]>
git.koha-community.org Git - koha.git/log
doxulting [Thu, 2 Jun 2005 15:24:44 +0000 (15:24 +0000)]
Template for 123a field plugin
doxulting [Thu, 2 Jun 2005 15:24:20 +0000 (15:24 +0000)]
Template for 122a field plugin
doxulting [Thu, 2 Jun 2005 15:23:59 +0000 (15:23 +0000)]
Template for 121b field plugin
doxulting [Thu, 2 Jun 2005 15:23:38 +0000 (15:23 +0000)]
Template for 121a field plugin
doxulting [Thu, 2 Jun 2005 15:23:13 +0000 (15:23 +0000)]
Template for 120a field plugin
doxulting [Thu, 2 Jun 2005 15:22:38 +0000 (15:22 +0000)]
Template for 117a field plugin
doxulting [Thu, 2 Jun 2005 15:22:13 +0000 (15:22 +0000)]
Template for 116a field plugin
doxulting [Thu, 2 Jun 2005 15:21:47 +0000 (15:21 +0000)]
Template for 115b field plugin
doxulting [Thu, 2 Jun 2005 15:21:18 +0000 (15:21 +0000)]
Template for 115a field plugin
doxulting [Thu, 2 Jun 2005 15:20:54 +0000 (15:20 +0000)]
Template for 110a field plugin
doxulting [Thu, 2 Jun 2005 15:20:25 +0000 (15:20 +0000)]
Template for 106a field plugin
doxulting [Thu, 2 Jun 2005 15:19:57 +0000 (15:19 +0000)]
Template for 105a field plugin
doxulting [Thu, 2 Jun 2005 15:16:54 +0000 (15:16 +0000)]
Template for 100a field plugin
gmccullagh [Thu, 2 Jun 2005 13:47:47 +0000 (13:47 +0000)]
just declared $totalResults and added an indent at the end
genjimoto [Thu, 2 Jun 2005 13:29:28 +0000 (13:29 +0000)]
minor bugfix
genjimoto [Thu, 2 Jun 2005 04:36:22 +0000 (04:36 +0000)]
minor bugfix
genjimoto [Thu, 2 Jun 2005 03:55:59 +0000 (03:55 +0000)]
template to edit the mediatype table.
genjimoto [Thu, 2 Jun 2005 03:55:26 +0000 (03:55 +0000)]
template to edit the item subcategory table.
genjimoto [Thu, 2 Jun 2005 03:55:02 +0000 (03:55 +0000)]
template to edit the item category table.
genjimoto [Thu, 2 Jun 2005 03:31:16 +0000 (03:31 +0000)]
script to edit the item subcategory table.
genjimoto [Thu, 2 Jun 2005 03:08:22 +0000 (03:08 +0000)]
script to edit the category table.
genjimoto [Thu, 2 Jun 2005 02:37:32 +0000 (02:37 +0000)]
script to edit the media type table.
genjimoto [Thu, 2 Jun 2005 00:47:58 +0000 (00:47 +0000)]
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.
genjimoto [Wed, 1 Jun 2005 23:07:17 +0000 (23:07 +0000)]
Addition of new table lists: Categorylist, Subcategorylist and Mediatypelist. Renamed classlist to itemtypelist.
genjimoto [Wed, 1 Jun 2005 22:20:16 +0000 (22:20 +0000)]
New Feature: Search options sidebar. Feature request of Rachel@katipo.
genjimoto [Wed, 1 Jun 2005 21:41:03 +0000 (21:41 +0000)]
New links to three new table editors: Categorytable, subcategorytable and mediatypetable.
genjimoto [Wed, 1 Jun 2005 21:35:05 +0000 (21:35 +0000)]
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
genjimoto [Wed, 1 Jun 2005 21:18:39 +0000 (21:18 +0000)]
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
genjimoto [Wed, 1 Jun 2005 20:43:58 +0000 (20:43 +0000)]
patch from Genji (Waylon R.) to update subjects in MARC tables when systempref has MARC=OFF
tipaul [Wed, 1 Jun 2005 18:55:08 +0000 (18:55 +0000)]
new version, doing tag by tag. Should be slower, but requires a lot less memory
tipaul [Wed, 1 Jun 2005 18:47:38 +0000 (18:47 +0000)]
new version, doing tag by tag. Should be slower, but requires a lot less memory
tipaul [Wed, 1 Jun 2005 12:51:02 +0000 (12:51 +0000)]
some fixes & improvements for dictionnary search in librarian interface
joshferraro [Tue, 31 May 2005 14:23:08 +0000 (14:23 +0000)]
fix for bug 981
slef [Fri, 27 May 2005 13:33:42 +0000 (13:33 +0000)]
possible fix for shell characters in kohaadmin user and database names
tipaul [Fri, 27 May 2005 09:30:23 +0000 (09:30 +0000)]
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.
rangi [Sun, 22 May 2005 01:18:45 +0000 (01:18 +0000)]
First cut of a search engine using Plucene
NOT FOR PRODUCTION, but if anyone wishes to test/improve go right ahead
hdl [Tue, 17 May 2005 14:54:16 +0000 (14:54 +0000)]
Removing a warning
dnmeid [Tue, 17 May 2005 13:21:34 +0000 (13:21 +0000)]
Some translation adjustments
rangi [Sun, 15 May 2005 05:56:05 +0000 (05:56 +0000)]
Can now change branch and printer
rangi [Sun, 15 May 2005 05:42:00 +0000 (05:42 +0000)]
Got drop down list appearing when more than one borrower matches
rangi [Sun, 15 May 2005 04:35:36 +0000 (04:35 +0000)]
Removing old print statement
rangi [Sun, 15 May 2005 04:34:09 +0000 (04:34 +0000)]
More little changes to remove warns
rangi [Sun, 15 May 2005 04:29:54 +0000 (04:29 +0000)]
Continuing work, issues getting closed to finished
rangi [Sun, 15 May 2005 00:03:26 +0000 (00:03 +0000)]
Just changed the intro text
rangi [Sat, 14 May 2005 23:57:28 +0000 (23:57 +0000)]
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.
rangi [Sat, 14 May 2005 22:26:07 +0000 (22:26 +0000)]
Another little error that was throwing annoying warns
rangi [Sat, 14 May 2005 22:20:17 +0000 (22:20 +0000)]
Fixing a line that was throwing up warnings when running the script with -w
rangi [Sat, 14 May 2005 22:05:44 +0000 (22:05 +0000)]
Commenting out warn call
Im working on a curses circulation module, and this warn was smearing output
to the screen.
dnmeid [Thu, 12 May 2005 19:26:13 +0000 (19:26 +0000)]
First german contribution to 2.2.2
Thanks to Friedrich
tipaul [Fri, 6 May 2005 15:56:06 +0000 (15:56 +0000)]
changing dewey to varchar
tipaul [Fri, 6 May 2005 08:25:16 +0000 (08:25 +0000)]
adding title & author to additem screen (owen suggestion)
tipaul [Wed, 4 May 2005 15:39:07 +0000 (15:39 +0000)]
synch'ing 2.2 and head
hdl [Wed, 4 May 2005 14:18:39 +0000 (14:18 +0000)]
adding Marc Record to authoritysearch report
joshferraro [Wed, 4 May 2005 14:01:45 +0000 (14:01 +0000)]
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.
joshferraro [Wed, 4 May 2005 13:58:35 +0000 (13:58 +0000)]
Fixes priority of reserves it also e-mails a list of 'problem' reserves to me at the library
joshferraro [Wed, 4 May 2005 13:54:01 +0000 (13:54 +0000)]
set itemlost status to '2' ("long overdue") on items more than 90 days overdue.
joshferraro [Wed, 4 May 2005 13:52:03 +0000 (13:52 +0000)]
Changed the status of a Juvinile patron to Adult on his/her 18th birthday
joshferraro [Wed, 4 May 2005 13:45:18 +0000 (13:45 +0000)]
Minor change to generalize the script
joshferraro [Wed, 4 May 2005 13:41:36 +0000 (13:41 +0000)]
Files relevant to LibLime's spellcheck and suggest features are placed
in this directory.
hdl [Wed, 4 May 2005 12:52:34 +0000 (12:52 +0000)]
Dictionary call modification
hdl [Wed, 4 May 2005 12:46:27 +0000 (12:46 +0000)]
Dictionary feature implemented
tipaul [Wed, 4 May 2005 08:58:30 +0000 (08:58 +0000)]
synch'ing 2.2 and head
tipaul [Wed, 4 May 2005 08:50:48 +0000 (08:50 +0000)]
synch'ing 2.2 and head
tipaul [Wed, 4 May 2005 08:45:03 +0000 (08:45 +0000)]
synch'ing 2.2 and head
joshferraro [Tue, 3 May 2005 19:39:20 +0000 (19:39 +0000)]
Fixes bug 970: renewing book from issues screen.
oleonard [Tue, 3 May 2005 18:32:12 +0000 (18:32 +0000)]
Correcting edit link
hdl [Tue, 3 May 2005 15:00:32 +0000 (15:00 +0000)]
Improving Interface.
oleonard [Mon, 2 May 2005 20:16:13 +0000 (20:16 +0000)]
Synching with rel_2_2.
oleonard [Mon, 2 May 2005 20:07:48 +0000 (20:07 +0000)]
Synching with rel_2_2.
oleonard [Mon, 2 May 2005 19:54:42 +0000 (19:54 +0000)]
Synching with rel_2_2.
oleonard [Mon, 2 May 2005 19:35:17 +0000 (19:35 +0000)]
Synching with rel_2_2.
oleonard [Mon, 2 May 2005 18:06:45 +0000 (18:06 +0000)]
Synching with rel_2_2.
hdl [Mon, 2 May 2005 15:59:49 +0000 (15:59 +0000)]
Sorting resullts
hdl [Mon, 2 May 2005 15:39:24 +0000 (15:39 +0000)]
Improving output:
Should be a good start point for choosing what to display.
hdl [Mon, 2 May 2005 09:25:13 +0000 (09:25 +0000)]
Perl Code to use dictionary.
hdl [Mon, 2 May 2005 06:25:01 +0000 (06:25 +0000)]
Template for "Dictionary" search
First pre-release.
Integrating rejected forms
hdl [Mon, 2 May 2005 06:21:58 +0000 (06:21 +0000)]
Icon proposition for dictionary, may not be in the right directory
hdl [Mon, 2 May 2005 06:20:11 +0000 (06:20 +0000)]
Integrating a call to a dictionary
oleonard [Wed, 27 Apr 2005 19:54:38 +0000 (19:54 +0000)]
Adding 'checkall' function for columns of checkboxes
oleonard [Wed, 27 Apr 2005 19:38:58 +0000 (19:38 +0000)]
Synching with rel_2_2
oleonard [Wed, 27 Apr 2005 18:33:29 +0000 (18:33 +0000)]
Modifying alternating table row color markup to match update to script
oleonard [Wed, 27 Apr 2005 18:16:19 +0000 (18:16 +0000)]
Left out some instances in the previous update
oleonard [Wed, 27 Apr 2005 17:17:41 +0000 (17:17 +0000)]
Moving alternating row colors to the template, adding publicationyear and itemtype variables
shaunevans [Mon, 18 Apr 2005 18:54:12 +0000 (18:54 +0000)]
fixed branchname and printername in returns.tmpl
joshferraro [Mon, 18 Apr 2005 17:11:28 +0000 (17:11 +0000)]
Adds some code for:
1. spellchecking
2. logging searches
3. making search variables availble sanely for use on the page
4. if one search result go directly to the item
5. documentation for above features
doxulting [Fri, 15 Apr 2005 14:31:51 +0000 (14:31 +0000)]
The search query was returning all records when was empty
doxulting [Thu, 14 Apr 2005 14:15:01 +0000 (14:15 +0000)]
Fixed the link to previous and next page which were loosing the frameworkcode
doxulting [Wed, 13 Apr 2005 14:59:58 +0000 (14:59 +0000)]
Fixing a link to show the member infos
doxulting [Wed, 13 Apr 2005 14:50:18 +0000 (14:50 +0000)]
Fixing translation error
hdl [Tue, 5 Apr 2005 17:07:46 +0000 (17:07 +0000)]
Scanning every the Subfields of auth_tag_to_report for FindDuplicate
hdl [Tue, 5 Apr 2005 15:23:40 +0000 (15:23 +0000)]
Searching for double entries when adding a new authority.
hdl [Tue, 5 Apr 2005 09:58:47 +0000 (09:58 +0000)]
Adding double authority search before creating a new authority
doxulting [Fri, 1 Apr 2005 14:41:31 +0000 (14:41 +0000)]
Fixed bug 968
hdl [Thu, 31 Mar 2005 18:17:16 +0000 (18:17 +0000)]
index reporting.
hdl [Thu, 31 Mar 2005 06:47:25 +0000 (06:47 +0000)]
Minor fix : Counting biblio and not items
hdl [Wed, 30 Mar 2005 15:26:31 +0000 (15:26 +0000)]
Changing number displayed : Bibid becomes biblionumber
hdl [Wed, 30 Mar 2005 08:08:25 +0000 (08:08 +0000)]
Modifying Empty Titles process For Translations
hdl [Tue, 29 Mar 2005 17:20:03 +0000 (17:20 +0000)]
Improving top lists display
hdl [Tue, 29 Mar 2005 16:08:14 +0000 (16:08 +0000)]
Displaying Biblionumbers rather than bibid
hdl [Tue, 29 Mar 2005 14:21:37 +0000 (14:21 +0000)]
Performance Improvements : Publisher lists and Item Codes becomes free input.