Matthias Meusburger
c92bc8d73b
Added debug mode for CAS warn messages
2009-11-23 16:34:31 +01:00
Matthias Meusburger
26d85c3cd6
Add missing return when CAS user is invalid
2009-11-23 16:32:40 +01:00
Henri-Damien LAURENT
36a01ea347
Second CAS version : CAS and non-CAS login can coexist
...
Conflicts solved :
C4/Auth.pm
opac/opac-main.pl
2009-11-23 16:26:35 +01:00
Matthias Meusburger
77ab8970f1
Add a syspref for CAS logout
2009-11-23 16:23:27 +01:00
Matthias Meusburger
acdd090246
Moved CAS configuration from config file to sysprefs
2009-11-23 16:23:20 +01:00
Henri-Damien LAURENT
7126496210
First CAS version : when CAS is enabled, login through CAS is mandatory
...
Conflicts solved C4/Auth.pm
2009-11-23 16:21:37 +01:00
Henri-Damien LAURENT
b323737267
MT1883 : Serials enddate was not cleanly used
...
GetExpirationDate should now be used only to get the NEXT expirationdate based on startdate
Perltidying C4/Serials.pm
2009-11-19 23:09:47 +01:00
Paul Poulain
66ade62eb4
oups, sorry, fixing mistake in previous patch
...
(reverting a not related and probably bogus change)
2009-11-19 23:09:47 +01:00
Paul Poulain
50c980b028
revamping a little opac-detail for subscription (adding more history information)
2009-11-19 23:09:47 +01:00
Matthias Meusburger
b529f00aa3
MT 2050 : Fast cataloging
2009-11-19 23:09:46 +01:00
Henri-Damien LAURENT
677111b342
Bug Fixing : C4/Acquisition.pm
...
Updating ModStatus to ModSuggestion
2009-11-19 22:54:41 +01:00
Nahuel ANGELINETTI
2bf19bc97a
(bug #3674 ) allow users creation with disabled password
2009-11-19 10:40:28 +01:00
Henri-Damien LAURENT
c4f19cbac9
MT 2298 : Fix hidelostitems
...
This patch fixes the opac search, and C4::Search to take care about hidelostitems for items, and not records.
Conflicts solved C4/Search.pm
2009-11-19 09:33:20 +01:00
Henri-Damien LAURENT
3daa3143ff
2298 2299 : Search.pm and opac-search.pl
...
Removing filter available and hidelostitems at Biblio level
2009-11-19 09:27:17 +01:00
Nahuel ANGELINETTI
2345dc7c27
(bug #3778 ) GetBranchesLoop and searchMyLibraryFirst
...
This fix GetBranchesLoop, if searchmylibraryfirst is disabled, getbranchesloop mustn't select any branch.
2009-11-18 19:12:45 +01:00
Nahuel ANGELINETTI
8f292e4e50
(bug #3783 ) fix marcurls
...
this permit to have multiples urls in one field
2009-11-18 19:04:52 +01:00
Henri-Damien LAURENT
d83ca6fedf
Adding a test in C4::Charset in UNIMARC_Encoding
2009-11-17 16:27:13 +01:00
Henri-Damien LAURENT
9d52c46dda
Better conformance for UNIMARC Authorities Encoding
...
encoding is on 8th character and not 9th
2009-11-17 16:27:12 +01:00
Paul Poulain
b89765e682
removing hardcoded (english) string
2009-11-17 16:27:12 +01:00
Paul Poulain
feaaffd0b1
missing ) result in SQL error
2009-11-16 17:21:58 +01:00
Henri-Damien LAURENT
19ac7c1569
Bug Fix : 3343 MT1313 Authorities MARC summary
...
When more than one heading, fields are mixed and not well ordered
2009-11-11 20:59:32 +01:00
Henri-Damien LAURENT
72d91ac361
Adding a warning On subscription deletion for item
...
If we really wanted to delete all items linked to a subscription when we delete a subscription
we should change the database structure as such :
ALTER TABLE serialitems ADD FOREIGN KEY ( itemnumber ) REFERENCES items (itemnumber) ON DELETE CASCADE ;
ALTER TABLE serial CHANGE subscriptionid subscriptionid INT( 11 ) NOT NULL
ALTER TABLE serial ADD INDEX subscription ( subscriptionid )
ALTER TABLE serial ADD FOREIGN KEY ( subscriptionid ) REFERENCES subscription (subscriptionid) ON DELETE CASCADE ;
2009-11-11 15:19:24 +01:00
Henri-Damien LAURENT
fc1a5ed318
MT1883 : Serials enddate was not cleanly used
...
GetExpirationDate should now be used only to get the NEXT expirationdate based on startdate
Perltidying C4/Serials.pm
2009-11-11 14:00:11 +01:00
Paul Poulain
761211ca0c
reindenting & removing comments
2009-11-11 11:17:47 +01:00
Paul Poulain
74fed183f9
oups, sorry, fixing mistake in previous patch
...
(reverting a not related and probably bogus change)
2009-11-10 22:23:50 +01:00
Paul Poulain
6c086454ff
revamping a little opac-detail for subscription (adding more history information)
2009-11-10 22:23:50 +01:00
Jane Wagner
0157b46e13
Bug 3702 add branch description as primary sort for items in staff mode
...
The default sort order for items attached to a title in staff mode is
items.dateaccessioned desc. This means that a particular library's holdings
will be scattered through the list -- a special problem when it comes to serial
issues. I've done a change to Items.pm that makes the sort order branch
description followed by dateaccessioned. Thus, a library's holdings will be
grouped together in the display.
2009-11-10 22:23:50 +01:00
Paul Poulain
ed047fead8
adding XSLT for intranet (UNIMARC only, MARC21 will be done by kf)
...
- the XSLTParse4Display sub now has a new parameter : the interface (intranet or opac)
- the XSLTdisplay sysprefs is common to staff & opac (Auth.pm)
- added UNIMARC xslt in intranet templates (modified to deal with staff/opac differences)
2009-11-10 22:23:50 +01:00
Paul Poulain
35fc57ae39
subs declared twice
2009-11-10 22:23:49 +01:00
Paul Poulain
638dfd30e5
fixing overdue checking (today is not late)
...
NOW() returns minuts and seconds. date_due is just YYYY-MM-DD
Thus date_due < now() is wrong if date_due is today, and the patron is considered as late.
With curdate(), the patron is late only the day after the overdue limit
2009-11-10 22:23:48 +01:00
Henri-Damien LAURENT
a4ac58cec8
enhancement C4::Members.pm Improving POD
...
Adding a function to output field as xml
2009-11-06 12:33:15 +01:00
Henri-Damien LAURENT
486c0b075e
SQLHelper Enhancement Adding contain as searchtype
2009-11-06 12:33:15 +01:00
Henri-Damien LAURENT
50e8e5a33f
enh Serials-collection Checking claimed late and expected issues
...
Could be better handled with jquery
2009-11-06 12:33:15 +01:00
Jean-André Santoni
eff46d395e
Adds billing address support in the basketgroup.
...
Also fixes a bug in ModBasketgroup, and renames the PDF uploaded to the client.
2009-11-04 13:17:09 +01:00
Jean-André Santoni
d61161a3d5
[3.2.x](bug #3624 ) Per-basketgroup delivery place
...
Librarian are now able to select a different delivery place for each basketgroup. They can choose one from the branch list or manualy using a textarea.
Database schema and PDF generation have been modified to reflect these changes.
2009-11-02 17:02:02 +01:00
Henri-Damien LAURENT
ee7d0af37b
POD improvement
2009-11-02 16:51:20 +01:00
Paul Poulain
4de7b92904
some reindenting & XHTML compliance
2009-10-30 13:49:39 +01:00
Henri-Damien LAURENT
1ec6e3df73
Change in API : ordnum becomes ordernumber
2009-10-30 00:30:47 +01:00
Paul Poulain
dc85da1830
suggestions improvements and fixes
...
- reindenting Suggestions.pm
- removing useless code in acqui-home.pl & fixing # of pending suggestion display
- add suggestion to order : displaying for selection suggestions accepted by the librarian (and reindenting)
- XHTMLing acqui-home (& removed useless parts)
NOTE ABOUT XHTML (could be useful) : <tfoot> must be BEFORE <tbody> in a <table>, even if, of course, it is displayed after.
2009-10-29 17:56:44 +01:00
Paul Poulain
2d4db26337
fixing SQL builded if there is no where_strings
2009-10-28 18:28:34 +01:00
Henri-Damien LAURENT
c71acb2a1f
C4/Biblio.pm Perltidy
2009-10-27 23:50:05 +01:00
Henri-Damien LAURENT
02415cb0a2
Followup bfffa5 TransformHTMLToXML bug fix
...
_default_ind_to_space had problems
2009-10-26 18:24:30 +01:00
Henri-Damien LAURENT
e3a8f1e20d
MT 2168 : Logical AND between multiple words strings
...
C4::SQLHelper was doing an implicit OR of multiple words strings
It is now fixed and does an AND
2009-10-26 15:34:33 +01:00
Henri-Damien LAURENT
67c69a3b66
Adding logging DBI errors if in Debug Mode
2009-10-26 15:34:33 +01:00
Nahuel ANGELINETTI
c0ee76d486
(bug #3726 ) fix ISBD url translation
2009-10-26 15:34:23 +01:00
Henri-Damien LAURENT
2d15dcabc8
Performance improvement authorities-list.pl
...
CountUsage in Authorities has a performance problem.
We now rely on SimpleSarch for that purpose and it should be better
2009-10-26 15:33:21 +01:00
Matthias Meusburger
790b7cc1b9
MT 2037 : Update ISBD
2009-10-22 11:45:38 +02:00
Matthias Meusburger
079b5e0efd
MT 2069 : MoveItemFromBiblio now checks for orders
2009-10-21 16:14:33 +02:00
Henri-Damien LAURENT
87b792b2b6
3.0.x: ce353e7
bug #3674 allow users creation with disabled password
2009-10-20 15:09:51 +02:00
root
e964e49c89
Bug Fixing MT 2095 : Add_excepti.al Search broken on QueryStemming
2009-10-20 12:22:15 +02:00