tonnesen [Thu, 16 May 2002 20:42:55 +0000 (20:42 +0000)]
Used subfieldcode where I should have used subfieldid (in primary key) Note
that I changed bibcode and tagcode to bibid and tagid as well to avoid
confusion with subfieldcode (which is the one letter subfield code)
tipaul [Thu, 16 May 2002 16:20:40 +0000 (16:20 +0000)]
Beginning of marc stuff :
* in marc directory, the marcschema.sql contains now the new marc structure. The old one is in marcschema.old.sql.
* in marc directory, the fill_usmarc.pl script fills the structure tables with USMARC format in english. Thanks to steve for the BIG work getting them from LOC... It's still to do for UNIMARC in english, and of course in french for me ;-)
* in admin directory, the marctagstructure.pl script helps playing with the structure and modifying it... It's not ended (tomorrow, i hope it will be)
tipaul [Wed, 15 May 2002 12:17:35 +0000 (12:17 +0000)]
Update of systempreferences table structure and admin script. Contains now a "help" fields that shows what param is supposed to do what. The params will be in the sample-DB. I've dumped the 3 I know. If there are others, let me know :
INSERT INTO systempreferences VALUES ('template', 'french', 'Template default name. Not used for instance');
INSERT INTO systempreferences VALUES ('autoBarcode', '', '1 or else. If 1, Barcode is auto-calculated');
INSERT INTO systempreferences VALUES ('acquisitions', 'normal', 'normal or simple : will use acquisition system found in directory acqui.simple or acquisition');
rangi [Wed, 15 May 2002 06:11:21 +0000 (06:11 +0000)]
Now uses KeywordSearch from C4::Search rather than keywordsearch from
C4::Acquisitions .. which can now be deprecated?
At least unless gynn tells me ive done something bad :)
rangi [Wed, 15 May 2002 04:54:07 +0000 (04:54 +0000)]
First cut of moredetail.pl using html::template
I think this is the last file ill work on templating for while, since this
allows me to achieve my aim which is to make the search results easily
customisable. So ill finish this off, then work on the opac versions. And
then back to bugfixing ill go
tonnesen [Tue, 14 May 2002 19:34:44 +0000 (19:34 +0000)]
Modifications to use new template directory structure. Removed hard coded
includes directory in templates. Note that TMPL_INCLUDE tags in a template
will now use the koha.conf includes variable as a search path, so only the
filename needs to be used.
tipaul [Tue, 14 May 2002 11:26:09 +0000 (11:26 +0000)]
First, run updater/thesaurus_create.pl.
It creates a thesaurus table and fills it with data in bibliosubject. Thesaurus
contains 2 columns : freelib and stdlib. This permits connecting differents forms for a word/sentence (HUGO may be mapped to V. Hugo, Victor Hugo...)
In modbib.pl, you will see "..." near subject. If you click on this ..., a popup appear. It has 4 parts : the Subject field, a search field with Search button. If you enter a value here and click Search, a list of thesaurus entries starting by what you enter appear.
If you select a value and click "OK", the value is added to the subject list.
When you've finished, click END. the window is closed, and the value copied to main subject window.
Make heavy use of javascript. TESTED UNDER MOZILLA 0.99. Please test under IE.
Administration of thesaurus table will come soon (with html::template) ...
tonnesen [Mon, 13 May 2002 23:20:45 +0000 (23:20 +0000)]
Fixed some problems in default.tmpl
Note, I have the includes dir hard-coded in default.tmpl. Needs fixing.
Also, you can pick another template by setting a systempreferences variable
'template' to some other value. If the given template can't be found, default.tmpl will be loaded instead.
tonnesen [Fri, 10 May 2002 22:38:08 +0000 (22:38 +0000)]
Small cleanups. We really need to hash out some standard hierarchy for storing
these templates. I'm thinking they are going to get a little overwhelming...
tonnesen [Fri, 10 May 2002 22:18:48 +0000 (22:18 +0000)]
Modified to use Search.pm and KeywordSearch().
Note that I had to modify Search.pm as well to get it to return something other than that bizarre @stuff array. :)
tonnesen [Fri, 10 May 2002 17:08:04 +0000 (17:08 +0000)]
Starting to play with HTML::Template
I'm going to work on the search interface instead of the circulation interface
as the search interface is where my librarians want the most changes at the
moment.
truth_nz [Thu, 9 May 2002 03:01:40 +0000 (03:01 +0000)]
Update to catalogue to allow change of biblio abstracts.
Related modifications to acqui system to match changes in Acquisition.pm
detail.pm changed to show abstract - still working on how to show url's
truth_nz [Thu, 9 May 2002 01:07:36 +0000 (01:07 +0000)]
Update to catalogue to allow change of biblio abstracts.
Related modifications to acqui system to match changes in Acquisition.pm
detail.pm changed to show abstract - still working on how to show url's
rangi [Tue, 7 May 2002 00:08:20 +0000 (00:08 +0000)]
Making the CatSearch and KeywordSearch return more sane returns
Returns an array of hashrefs now, rather than the array of tab separated
strings it was returning before.
rangi [Mon, 6 May 2002 23:12:25 +0000 (23:12 +0000)]
Removing keywordsearch2 (no longer used)
Fixing glitches in counting lost items.
In items
itemlost=1 item marked lost by a librarian
itemlost=2 item marked lost by kohas automatic this item is over 4 weeks
overdue routine.
To the borrowers (ie in the opac) they should just show as lost
finlayt [Thu, 2 May 2002 00:06:28 +0000 (00:06 +0000)]
Changes to circulations:
added returns.pl -> deals with the returns only
moved old circulation.pl to circulationold.pl which still deals with issues.
fixed up branchtransfers.pl
moved circulation2.pl to circulation.pl
Modifications for new acqui.simple
Database includes new biblio abstract field and biblioitem url field
acqui/finishreceive.pl modified to use changed C4/Acquisitions.pm
This is my bulk MARC record importing tool. Feel free to test it out, but DO
NOT use it on a production system yet! It needs to be more adaptable to
different MARC implementations.
Note that the script will spit out a plain text copy of the records being
imported to STDOUT, so you will probably want to redirect to a file, or pipe to
less.