Commit graph

973 commits

Author SHA1 Message Date
tipaul
c66ae1ea3e HTML & template bugfixes 2004-05-28 12:08:16 +00:00
tipaul
51fa01b732 some HTML cleaning & improvements 2004-05-28 08:39:54 +00:00
tipaul
be7724cf4b MARC view in OPAC 2004-05-28 08:39:31 +00:00
tipaul
10e7d3a7b8 adding :
* MARC authority file
* seealso & hidden in MARC biblio structure.
2004-05-28 08:39:06 +00:00
tipaul
e2774d1746 some HTML & minor modifs 2004-05-28 08:37:34 +00:00
tipaul
c6818231e4 just reordering the menus in a more logic order 2004-05-28 08:36:36 +00:00
tipaul
c5de9d3f91 *** empty log message *** 2004-05-28 08:34:15 +00:00
tipaul
1caccbf1ca hidding hidden & isurl constraints into MARC subfield structure 2004-05-28 08:33:41 +00:00
tipaul
da9de9b37a *** empty log message *** 2004-05-24 14:39:45 +00:00
doxulting
06009ffc32 *** empty log message *** 2004-05-24 14:28:09 +00:00
doxulting
fc82766093 The new circulation.tmpl, for correct var names 2004-05-24 14:18:42 +00:00
doxulting
8268330561 Premier commit JB34. Verification du nombre maximum de livre a emprunter. 2004-05-24 12:14:38 +00:00
oleonard
360b795db3 A couple more changes to make page XHTML-compliant 2004-05-19 17:05:15 +00:00
oleonard
4a25250789 Many changes to make page XHTML-compliant 2004-05-19 16:59:28 +00:00
oleonard
550c057e3a Closing tags, correcting case, other changes to make page valid 2004-05-19 16:28:31 +00:00
oleonard
105b81aabf Adding class to id declarations to allow XHTML-compliance in some pages 2004-05-19 16:26:45 +00:00
oleonard
1fa33a5250 Closing input tags to make valid XHTML 2004-05-19 16:17:11 +00:00
oleonard
b0d5a41738 Fixing broken next and previous links in the bottom row of the search results table 2004-05-19 16:00:40 +00:00
tipaul
88e67b8d3e framework management : 1 MARC framework for each itemtype 2004-05-18 15:22:10 +00:00
oleonard
25e5237bfa Closing input tags, correcting case, other changes to move page towards validity 2004-05-12 15:42:59 +00:00
oleonard
97ba6b06c7 Closing input tags to make page valid 2004-05-12 15:27:02 +00:00
oleonard
1ca2b00ac5 Fixing broken numbered results links on bottom of page 2004-05-12 15:21:28 +00:00
oleonard
a51318d5b7 Added styling for search results page number links 2004-05-10 16:48:43 +00:00
oleonard
5fc802fa74 Replacing image-based results page numbers with css-styled text links 2004-05-10 16:48:08 +00:00
oleonard
0633562f79 Changes to make XHTML-compliant: quoting attributes, encoding ampersands, closing tags, etc. 2004-05-10 16:32:07 +00:00
oleonard
4487617448 Quoting href attribute to make XHTML compliant 2004-05-10 16:30:58 +00:00
tipaul
ec64f1fcd8 Marc search ported to OPAC.
seems to work fine
2004-05-10 09:24:14 +00:00
tipaul
c62e76bd74 using itemcallnumber instead of bulk 2004-05-06 14:53:36 +00:00
tipaul
2909e90634 minor modifs in CSS 2004-05-06 14:52:23 +00:00
tipaul
703eca0aa5 issuingrules : the new script to manage issuing rules (issuing number & length by branch / itemtype / borrower type) 2004-05-06 14:51:22 +00:00
tipaul
a4157fd8d2 continuing code cleaning & reordering 2004-05-04 16:15:56 +00:00
tipaul
86e77f6b7f removing charges.pl and pointing to issuingrules 2004-05-04 15:25:28 +00:00
tipaul
1e0d19e820 removed (replaced by issuingrules.pl, script to come) 2004-05-04 15:24:34 +00:00
tipaul
e1eb7302f3 POD documenting & some improvements 2004-05-03 16:41:59 +00:00
tipaul
853ad792a5 css'ing & improving MARC search 2004-05-03 09:28:39 +00:00
tipaul
340af80261 CSS'ing 2004-05-03 09:28:03 +00:00
tipaul
48bcc1fb62 css'ing 2004-05-03 09:27:48 +00:00
tipaul
cebc78b017 minor fix 2004-05-03 09:27:04 +00:00
tipaul
040bcdf92b CIRCULATION : the big rewrite...
This 1st commit reorders deeply the circulation module.
The goal is to :
* have something 100% templated/translatable.
* have something easy to read & modify, to say to customers/users : you can define your circulation rules as you want if you accept to look in C4/Circ/Circ2.pm

The circulation now works :
1=> ask for the borrower barcode (as previously)
2=> ask for the item barcode.
3=> check "canbookbeissued". This new sub returns 2 arrays :
- IMPOSSIBLE : if something is here, then the issue is not possible and is not done.
- TOBECONFIRMED : if something is here, then the issue can be donc if the user confirms it.
4=> if TOBECONFIRMED is set : ask for confirmation, loop. if neither  are set or confirmation flag is set (2nd pass of the loop), then issue.

The IMPOSSIBLE & TOBECONFIRMED hashs contains :
* the reason of the line. always in capitals, with words separated by _ : BARCODE_UNKNOWN, DEBTS ... as key of the hash
* more information, as value of the hash ( TOBECONFIRMED{ALREADY_ISSUED} = "previous_borrower_name", for example)

This commit :
* compiles
* works on certain situations, not on other
* does NOT issue (the line is # )
* does not check issuing rules depending of # of books allowed / already issued

The next step is :
- check issuing rule.
- extend issuing rule to have a 3D array : for each branch / itemtype / borrowertype = issuing number and issuing length.
2004-05-03 09:10:51 +00:00
tipaul
21a379acda CIRCULATION : the big rewrite...
This 1st commit reorders deeply the circulation module.
The goal is to :
* have something 100% templated/translatable.
* have something easy to read & modify, to say to customers/users : you can define your circulation rules as you want if you accept to look in C4/Circ/Circ2.pm

The circulation now works :
1=> ask for the borrower barcode (as previously)
2=> ask for the item barcode.
3=> check "canbookbeissued". This new sub returns 2 arrays :
- IMPOSSIBLE : if something is here, then the issue is not possible and is not done.
- TOBECONFIRMED : if something is here, then the issue can be donc if the user confirms it.
4=> if TOBECONFIRMED is set : ask for confirmation, loop. if neither  are set or confirmation flag is set (2nd pass of the loop), then issue.

The IMPOSSIBLE & TOBECONFIRMED hashs contains :
* the reason of the line. always in capitals, with words separated by _ : BARCODE_UNKNOWN, DEBTS ... as key of the hash
* more information, as value of the hash ( TOBECONFIRMED{ALREADY_ISSUED} = "previous_borrower_name", for example)

This commit :
* compiles
* works on certain situations, not on other
* does NOT issue (the line is # )
* does not check issuing rules depending of # of books allowed / already issued

The next step is :
- check issuing rule.
- extend issuing rule to have a 3D array : for each branch / itemtype / borrowertype = issuing number and issuing length.
2004-05-03 09:02:12 +00:00
acli
10e40b7fdb Sorry, missed another one. This should not be neuter gender either. 2004-04-20 04:01:38 +00:00
acli
97c3797afb Oops, here, neuter gender is not right, in any case 2004-04-20 03:51:17 +00:00
acli
0650f5ace6 Correction of spelling mistakes 2004-04-20 03:46:40 +00:00
acli
7503ad47b9 Added missing whitespace between attributes 2004-04-20 03:35:04 +00:00
acli
c52fdc46ad Fixed "closed start tag" problem (i.e., missing > ) 2004-04-20 03:34:29 +00:00
kb2qzv
59f7410347 new template files created by tmpl_process3.pl. 2004-04-17 17:05:56 +00:00
kb2qzv
9a12e5c6c2 new template files created by tmpl_process3.pl. 2004-04-17 16:57:06 +00:00
kb2qzv
9272b3f61a *** empty log message *** 2004-04-17 16:53:53 +00:00
kb2qzv
d477335f7c minor update of translation, removal of fuzzies 2004-04-17 16:26:24 +00:00
tipaul
a2f1bf834f improving Search :
* adding "suggestion", that popup a windows. The popup windows shows, for each word entered in the search form, the 10 words that sounds like the word entered, and that are used most often.
* fixes some minor bugs

Still to do :
* good support of ' and ,
2004-04-16 07:28:22 +00:00