koha.git
19 years agotemplate to edit the mediatype table.
genjimoto [Thu, 2 Jun 2005 03:55:59 +0000 (03:55 +0000)]
template to edit the mediatype table.

19 years agotemplate to edit the item subcategory table.
genjimoto [Thu, 2 Jun 2005 03:55:26 +0000 (03:55 +0000)]
template to edit the item subcategory table.

19 years agotemplate to edit the item category table.
genjimoto [Thu, 2 Jun 2005 03:55:02 +0000 (03:55 +0000)]
template to edit the item category table.

19 years agoscript to edit the item subcategory table.
genjimoto [Thu, 2 Jun 2005 03:31:16 +0000 (03:31 +0000)]
script to edit the item subcategory table.

19 years agoscript to edit the category table.
genjimoto [Thu, 2 Jun 2005 03:08:22 +0000 (03:08 +0000)]
script to edit the category table.

19 years agoscript to edit the media type table.
genjimoto [Thu, 2 Jun 2005 02:37:32 +0000 (02:37 +0000)]
script to edit the media type table.

19 years agoProcesses the Search options sidebar input, and places it into terms and values for...
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.

19 years agoAddition of new table lists: Categorylist, Subcategorylist and Mediatypelist. Renamed...
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.

19 years agoNew Feature: Search options sidebar. Feature request of Rachel@katipo.
genjimoto [Wed, 1 Jun 2005 22:20:16 +0000 (22:20 +0000)]
New Feature: Search options sidebar. Feature request of Rachel@katipo.

19 years agoNew links to three new table editors: Categorytable, subcategorytable and mediatypetable.
genjimoto [Wed, 1 Jun 2005 21:41:03 +0000 (21:41 +0000)]
New links to three new table editors: Categorytable, subcategorytable and mediatypetable.

19 years agoNew Feature: catalogsearch() has a new parameter, $sqlstring. A developer puts into...
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

19 years agoNew Feature: catalogsearch() has a new parameter, $sqlstring. A developer puts into...
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

19 years agopatch from Genji (Waylon R.) to update subjects in MARC tables when systempref has...
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

19 years agonew version, doing tag by tag. Should be slower, but requires a lot less memory
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

19 years agonew 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

19 years agosome fixes & improvements for dictionnary search in librarian interface
tipaul [Wed, 1 Jun 2005 12:51:02 +0000 (12:51 +0000)]
some fixes & improvements for dictionnary search in librarian interface

19 years agofix for bug 981
joshferraro [Tue, 31 May 2005 14:23:08 +0000 (14:23 +0000)]
fix for bug 981

19 years agopossible fix for shell characters in kohaadmin user and database names
slef [Fri, 27 May 2005 13:33:42 +0000 (13:33 +0000)]
possible fix for shell characters in kohaadmin user and database names

19 years agoproof of concept for inverted index tables for search
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.

19 years agoFirst cut of a search engine using Plucene
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

19 years agoRemoving a warning
hdl [Tue, 17 May 2005 14:54:16 +0000 (14:54 +0000)]
Removing a warning

19 years agoSome translation adjustments
dnmeid [Tue, 17 May 2005 13:21:34 +0000 (13:21 +0000)]
Some translation adjustments

19 years agoCan now change branch and printer
rangi [Sun, 15 May 2005 05:56:05 +0000 (05:56 +0000)]
Can now change branch and printer

19 years agoGot drop down list appearing when more than one borrower matches
rangi [Sun, 15 May 2005 05:42:00 +0000 (05:42 +0000)]
Got drop down list appearing when more than one borrower matches

19 years agoRemoving old print statement
rangi [Sun, 15 May 2005 04:35:36 +0000 (04:35 +0000)]
Removing old print statement

19 years agoMore little changes to remove warns
rangi [Sun, 15 May 2005 04:34:09 +0000 (04:34 +0000)]
More little changes to remove warns

19 years agoContinuing work, issues getting closed to finished
rangi [Sun, 15 May 2005 04:29:54 +0000 (04:29 +0000)]
Continuing work, issues getting closed to finished

19 years agoJust changed the intro text
rangi [Sun, 15 May 2005 00:03:26 +0000 (00:03 +0000)]
Just changed the intro text

19 years agoStart of a module to handle circulation use Curses::UI
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.

19 years agoAnother little error that was throwing annoying warns
rangi [Sat, 14 May 2005 22:26:07 +0000 (22:26 +0000)]
Another little error that was throwing annoying warns

19 years agoFixing a line that was throwing up warnings when running the script with -w
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

19 years agoCommenting out warn call
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.

19 years agoFirst german contribution to 2.2.2
dnmeid [Thu, 12 May 2005 19:26:13 +0000 (19:26 +0000)]
First german contribution to 2.2.2
Thanks to Friedrich

19 years agochanging dewey to varchar
tipaul [Fri, 6 May 2005 15:56:06 +0000 (15:56 +0000)]
changing dewey to varchar

19 years agoadding title & author to additem screen (owen suggestion)
tipaul [Fri, 6 May 2005 08:25:16 +0000 (08:25 +0000)]
adding title & author to additem screen (owen suggestion)

19 years agosynch'ing 2.2 and head
tipaul [Wed, 4 May 2005 15:39:07 +0000 (15:39 +0000)]
synch'ing 2.2 and head

19 years agoadding Marc Record to authoritysearch report
hdl [Wed, 4 May 2005 14:18:39 +0000 (14:18 +0000)]
adding Marc Record to authoritysearch report

19 years agoproduces a comma separated list of currently available reserves, with item and borrow...
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.

19 years agoFixes priority of reserves it also e-mails a list of 'problem' reserves to me at...
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

19 years agoset itemlost status to '2' ("long overdue") on items more than 90 days overdue.
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.

19 years agoChanged the status of a Juvinile patron to Adult on his/her 18th birthday
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

19 years agoMinor change to generalize the script
joshferraro [Wed, 4 May 2005 13:45:18 +0000 (13:45 +0000)]
Minor change to generalize the script

19 years agoFiles relevant to LibLime's spellcheck and suggest features are placed
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.

19 years agoDictionary call modification
hdl [Wed, 4 May 2005 12:52:34 +0000 (12:52 +0000)]
Dictionary call modification

19 years agoDictionary feature implemented
hdl [Wed, 4 May 2005 12:46:27 +0000 (12:46 +0000)]
Dictionary feature implemented

19 years agosynch'ing 2.2 and head
tipaul [Wed, 4 May 2005 08:58:30 +0000 (08:58 +0000)]
synch'ing 2.2 and head

19 years agosynch'ing 2.2 and head
tipaul [Wed, 4 May 2005 08:50:48 +0000 (08:50 +0000)]
synch'ing 2.2 and head

19 years agosynch'ing 2.2 and head
tipaul [Wed, 4 May 2005 08:45:03 +0000 (08:45 +0000)]
synch'ing 2.2 and head

19 years agoFixes bug 970: renewing book from issues screen.
joshferraro [Tue, 3 May 2005 19:39:20 +0000 (19:39 +0000)]
Fixes bug 970: renewing book from issues screen.

19 years agoCorrecting edit link
oleonard [Tue, 3 May 2005 18:32:12 +0000 (18:32 +0000)]
Correcting edit link

19 years agoImproving Interface.
hdl [Tue, 3 May 2005 15:00:32 +0000 (15:00 +0000)]
Improving Interface.

19 years agoSynching with rel_2_2.
oleonard [Mon, 2 May 2005 20:16:13 +0000 (20:16 +0000)]
Synching with rel_2_2.

19 years agoSynching with rel_2_2.
oleonard [Mon, 2 May 2005 20:07:48 +0000 (20:07 +0000)]
Synching with rel_2_2.

19 years agoSynching with rel_2_2.
oleonard [Mon, 2 May 2005 19:54:42 +0000 (19:54 +0000)]
Synching with rel_2_2.

19 years agoSynching with rel_2_2.
oleonard [Mon, 2 May 2005 19:35:17 +0000 (19:35 +0000)]
Synching with rel_2_2.

19 years agoSynching with rel_2_2.
oleonard [Mon, 2 May 2005 18:06:45 +0000 (18:06 +0000)]
Synching with rel_2_2.

19 years agoSorting resullts
hdl [Mon, 2 May 2005 15:59:49 +0000 (15:59 +0000)]
Sorting resullts

19 years agoImproving output:
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.

19 years agoPerl Code to use dictionary.
hdl [Mon, 2 May 2005 09:25:13 +0000 (09:25 +0000)]
Perl Code to use dictionary.

19 years agoTemplate for "Dictionary" search
hdl [Mon, 2 May 2005 06:25:01 +0000 (06:25 +0000)]
Template for "Dictionary" search
First pre-release.
Integrating rejected forms

19 years agoIcon proposition for dictionary, may not be in the right directory
hdl [Mon, 2 May 2005 06:21:58 +0000 (06:21 +0000)]
Icon proposition for dictionary, may not be in the right directory

19 years agoIntegrating a call to a dictionary
hdl [Mon, 2 May 2005 06:20:11 +0000 (06:20 +0000)]
Integrating a call to a dictionary

19 years agoAdding 'checkall' function for columns of checkboxes
oleonard [Wed, 27 Apr 2005 19:54:38 +0000 (19:54 +0000)]
Adding 'checkall' function for columns of checkboxes

19 years agoSynching with rel_2_2
oleonard [Wed, 27 Apr 2005 19:38:58 +0000 (19:38 +0000)]
Synching with rel_2_2

19 years agoModifying alternating table row color markup to match update to script
oleonard [Wed, 27 Apr 2005 18:33:29 +0000 (18:33 +0000)]
Modifying alternating table row color markup to match update to script

19 years agoLeft out some instances in the previous update
oleonard [Wed, 27 Apr 2005 18:16:19 +0000 (18:16 +0000)]
Left out some instances in the previous update

19 years agoMoving alternating row colors to the template, adding publicationyear and itemtype...
oleonard [Wed, 27 Apr 2005 17:17:41 +0000 (17:17 +0000)]
Moving alternating row colors to the template, adding publicationyear and itemtype variables

19 years agofixed branchname and printername in returns.tmpl
shaunevans [Mon, 18 Apr 2005 18:54:12 +0000 (18:54 +0000)]
fixed branchname and printername in returns.tmpl

19 years agoAdds some code for:
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

19 years agoThe search query was returning all records when was empty
doxulting [Fri, 15 Apr 2005 14:31:51 +0000 (14:31 +0000)]
The search query was returning all records when  was empty

19 years agoFixed the link to previous and next page which were loosing the frameworkcode
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

19 years agoFixing a link to show the member infos
doxulting [Wed, 13 Apr 2005 14:59:58 +0000 (14:59 +0000)]
Fixing a link to show the member infos

19 years agoFixing translation error
doxulting [Wed, 13 Apr 2005 14:50:18 +0000 (14:50 +0000)]
Fixing translation error

19 years agoScanning every the Subfields of auth_tag_to_report for FindDuplicate
hdl [Tue, 5 Apr 2005 17:07:46 +0000 (17:07 +0000)]
Scanning every the Subfields of auth_tag_to_report for FindDuplicate

19 years agoSearching for double entries when adding a new authority.
hdl [Tue, 5 Apr 2005 15:23:40 +0000 (15:23 +0000)]
Searching for double entries when adding a new authority.

19 years agoAdding double authority search before creating a new authority
hdl [Tue, 5 Apr 2005 09:58:47 +0000 (09:58 +0000)]
Adding double authority search before creating a new authority

19 years agoFixed bug 968
doxulting [Fri, 1 Apr 2005 14:41:31 +0000 (14:41 +0000)]
Fixed bug 968

19 years agoindex reporting.
hdl [Thu, 31 Mar 2005 18:17:16 +0000 (18:17 +0000)]
index reporting.

19 years agoMinor fix : Counting biblio and not items
hdl [Thu, 31 Mar 2005 06:47:25 +0000 (06:47 +0000)]
Minor fix : Counting biblio and not items

19 years agoChanging number displayed : Bibid becomes biblionumber
hdl [Wed, 30 Mar 2005 15:26:31 +0000 (15:26 +0000)]
Changing number displayed : Bibid becomes biblionumber

19 years agoModifying Empty Titles process For Translations
hdl [Wed, 30 Mar 2005 08:08:25 +0000 (08:08 +0000)]
Modifying Empty Titles process For Translations

19 years agoImproving top lists display
hdl [Tue, 29 Mar 2005 17:20:03 +0000 (17:20 +0000)]
Improving top lists display

19 years agoDisplaying Biblionumbers rather than bibid
hdl [Tue, 29 Mar 2005 16:08:14 +0000 (16:08 +0000)]
Displaying Biblionumbers rather than bibid

19 years agoPerformance Improvements : Publisher lists and Item Codes becomes free input.
hdl [Tue, 29 Mar 2005 14:21:37 +0000 (14:21 +0000)]
Performance Improvements : Publisher lists and Item Codes becomes free input.

19 years agoAdding lists for borrowers and items with no issues.
hdl [Thu, 24 Mar 2005 15:19:48 +0000 (15:19 +0000)]
Adding lists for borrowers and items with no issues.
Minor bug fixes to Top lists catalogue and borrowers.

19 years agoFixes on issues_avg_stats
hdl [Wed, 23 Mar 2005 21:51:00 +0000 (21:51 +0000)]
Fixes on issues_avg_stats
Adding Top lists to reports on Issues for borrowers and Items

19 years agoAdding a parameter to allow acces to people with management/tools flags
doxulting [Wed, 23 Mar 2005 09:53:21 +0000 (09:53 +0000)]
Adding a parameter to allow acces to people with management/tools flags

19 years agoAdding a parameter to allow acces to people with management flag
doxulting [Wed, 23 Mar 2005 09:41:50 +0000 (09:41 +0000)]
Adding a parameter to allow acces to people with management flag

19 years agoAdding a parameter to allow acces to people with management flag
doxulting [Wed, 23 Mar 2005 09:40:42 +0000 (09:40 +0000)]
Adding a parameter to allow acces to people with management flag

19 years agoAdding a parameter to allow acces to people with management flag
doxulting [Wed, 23 Mar 2005 09:29:30 +0000 (09:29 +0000)]
Adding a parameter to allow acces to people with management flag

19 years agoOnly shows authorized sections to the logged user.
doxulting [Wed, 23 Mar 2005 09:26:48 +0000 (09:26 +0000)]
Only shows authorized sections to the logged user.

19 years agoNew param for the template in order to show only allowed links to user (In parameters...
doxulting [Wed, 23 Mar 2005 09:25:20 +0000 (09:25 +0000)]
New param for the template in order to show only allowed links to user (In parameters screen only right now)

19 years agoAdding some flagsrequired
doxulting [Wed, 23 Mar 2005 09:24:10 +0000 (09:24 +0000)]
Adding some flagsrequired

19 years agoAdding 2 flags to separate the rights in the parameter section
doxulting [Wed, 23 Mar 2005 09:23:04 +0000 (09:23 +0000)]
Adding 2 flags to separate the rights in the parameter section

19 years agoAdding Stats on Average loan time
hdl [Tue, 22 Mar 2005 17:03:36 +0000 (17:03 +0000)]
Adding Stats on Average loan time

19 years agoFixing : $0 never written
hdl [Mon, 21 Mar 2005 16:35:46 +0000 (16:35 +0000)]
Fixing : $0 never written

19 years agobugfix : don't try to get ->data if 001 field is undefined, or you'll get a 'internal...
tipaul [Sun, 20 Mar 2005 21:18:48 +0000 (21:18 +0000)]
bugfix : don't try to get ->data if 001 field is undefined, or you'll get a 'internal server error'

19 years agoMinor Bug Fixing
hdl [Fri, 18 Mar 2005 15:52:27 +0000 (15:52 +0000)]
Minor Bug Fixing

19 years agoMinor Bug fixing
hdl [Fri, 18 Mar 2005 15:36:25 +0000 (15:36 +0000)]
Minor Bug fixing

19 years agoJust adding a $
oleonard [Thu, 17 Mar 2005 21:27:23 +0000 (21:27 +0000)]
Just adding a $