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
rangi
7aa3844555
Commenting out warn call
...
Im working on a curses circulation module, and this warn was smearing output
to the screen.
2005-05-14 22:05:44 +00:00
dnmeid
9539d449b2
First german contribution to 2.2.2
...
Thanks to Friedrich
2005-05-12 19:26:13 +00:00
tipaul
9d21434743
changing dewey to varchar
2005-05-06 15:56:06 +00:00
tipaul
b8a505877d
adding title & author to additem screen (owen suggestion)
2005-05-06 08:25:16 +00:00
tipaul
369527637b
synch'ing 2.2 and head
2005-05-04 15:39:07 +00:00
hdl
a65bbe2598
adding Marc Record to authoritysearch report
2005-05-04 14:18:39 +00:00
joshferraro
fd9122cdba
produces a comma separated list of currently available reserves, with item and borrower details.
...
NOTE: it's NPL-specific because of hardcoded branch info -- this could be
fixed with a query for branches.
2005-05-04 14:01:45 +00:00
joshferraro
ce775cce9c
Fixes priority of reserves it also e-mails a list of 'problem' reserves to me at the library
2005-05-04 13:58:35 +00:00
joshferraro
82b9f92bd9
set itemlost status to '2' ("long overdue") on items more than 90 days overdue.
2005-05-04 13:54:01 +00:00
joshferraro
8810f62ad4
Changed the status of a Juvinile patron to Adult on his/her 18th birthday
2005-05-04 13:52:03 +00:00
joshferraro
effd10ecdf
Minor change to generalize the script
2005-05-04 13:45:18 +00:00
joshferraro
0bd7d912b8
Files relevant to LibLime's spellcheck and suggest features are placed
...
in this directory.
2005-05-04 13:41:36 +00:00
hdl
e2085c673a
Dictionary call modification
2005-05-04 12:52:34 +00:00
hdl
a71a6a78ad
Dictionary feature implemented
2005-05-04 12:46:27 +00:00
tipaul
64cd740d2b
synch'ing 2.2 and head
2005-05-04 08:58:30 +00:00
tipaul
4dea4ae494
synch'ing 2.2 and head
2005-05-04 08:50:48 +00:00
tipaul
7aad473042
synch'ing 2.2 and head
2005-05-04 08:45:03 +00:00