Joshua Ferraro
d08387dd28
first go at moving templates to a modules/ dir
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-23 21:11:27 -05:00
Joshua Ferraro
fe59dc27ed
Removing unused export files, better tools exist
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-23 15:14:44 -05:00
7161f9bf18
Correcting <!-- TMPL_IF -->'s nested inside HTML (breaks translator)
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-20 15:16:48 -05:00
Ryan Higgins
6e2564450e
Adding labels generator.
...
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-18 17:39:38 -05:00
Paul POULAIN
2716acbb11
loading template 1st to have userenv set + fixing javasccript bug + reindenting
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-18 17:38:28 -05:00
Paul POULAIN
61c72f8f3e
Adding KOHAVERSION management.
...
The kohaversion is in the code directory (in /kohaversion.pl)
C4::Context now has a new method C4::Context->KOHAVERSION
that returns the koha code version.
The systempreference Version contains the database version.
If the 2 are differents, when the user log in, he is redirected to web installer (new behaviour : before this commit, the check was done on everypage, it's too CPU costly I think)
In the web installer, we check now if we do a new setup or an upgrade and show only the appropriate link.
The updatedatabase contains a lot of new things :
* SetVersion($kohaversion), that set the kohaversion after each update
* TransformToNum($kohaversion) that returns a number (3.0000001 from 3.00.00.001 for example) for a given koha version
* DropAllForeignKeys($table) that does what is written : drop all foreign keys. A shame it's not possible directly in mySQL...
* for each database update, just :
add the following lines :
=item
Describe what it does for other developpers
=cut
$DBversion = "your.koha.version.dbnumber";
if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
#
# DO YOUR UPDATE STUFF
#
print "Upgrade to $DBversion done (specify what it does if you want)\n";
SetVersion ($DBversion);
}
IMPORTANT NOTES :
in koha 2.2, a new install was done through installing a 2.2.0 database, then updating it to the installed version.
in Koha 3.0, /installer/kohaversion.sql MUST contain an uptodate version, as the installer set the DB version to kohaversion after uploading kohaversion.sql. It does NOT run updatedatabase.
The update from Koha 2.2 to Koha 3.0 must NOT be done through the webinstaller : updatedatabase is very very long to run and you'll reach Apache timeout for sure. See http://wiki.koha.org/doku.php?id=22_to_30 that contains my notes for upgrading (with some/few UNIMARC specific stuff)
Note For RM, please eyeball this change
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-16 06:58:32 -05:00
Paul POULAIN
39cb2ee520
some minor changes in template
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-16 06:56:31 -05:00
Paul POULAIN
1e6c13df39
show callnumber in result list and update SQL by using LEFT JOIN
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-16 06:56:17 -05:00
Paul POULAIN
720bc7b37a
adding supplier deletion feature.
...
A supplier can be deleted ONLY if it has NO basket
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-16 06:56:00 -05:00
Joshua Ferraro
836b9857ed
content-type was incorrectly set in InstallAuth.pm
...
Adding 'wizard' and 'login' detection
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2007-08-15 21:22:21 -05:00
Paul POULAIN
55ac115e61
fixes to fine management
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-14 21:32:45 -05:00
Paul POULAIN
e49fc799f5
spelling error
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-14 21:32:34 -05:00
Paul POULAIN
497bbd84b0
show the departure date if close or past
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-14 21:32:22 -05:00
Paul POULAIN
67416b736d
some template cleaning, using right action tool bar for buttons
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-14 21:32:10 -05:00
Paul POULAIN
7f30f3b20a
fixing cleanborrowers
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-14 21:32:04 -05:00
Paul POULAIN
7612dacc6f
show username instead of cardnumber
...
Signed-off-by: Chris Cormack <crc@liblime.com>
Note from Chris, this should probably be a system preference, some libraries want the cardnumber there.
2007-08-14 21:30:38 -05:00
Paul POULAIN
78a65edccc
don't show the issuer on OPAC
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-14 21:29:08 -05:00
Paul POULAIN
e55803e8d6
fix bug in calendar handling
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-14 21:28:53 -05:00
Joshua Ferraro
fc41d057f1
removing some unused directories
...
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2007-08-13 12:29:01 -05:00
Joshua Ferraro
2b2f7a1794
revisions to login page to make it pretty
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-10 12:15:05 -05:00
Joshua Ferraro
663f3bb7d8
Revert "set the branch at login"
...
This reverts commit bf1fd83d08
.
Conflicts:
koha-tmpl/intranet-tmpl/prog/en/auth.tmpl
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-09 10:46:47 -05:00
Joshua Ferraro
b2420d8aa3
working on adding library logi
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-09 10:46:38 -05:00
Paul POULAIN
3f9017b349
adding a ExpandField feature to MARC editor : all subfields that are empty and not mandatory are hidden by default. a click on the tag title expand all of them. This is better imho than the previous minimizer, because :
...
Note that the minimize/expand by default behaviour could be changed to use the hidden property. Il let LibLime guys say what they think of this proposal, and discuss another behaviour.
Anyway, it proves that the new editor is better than the previous one as it can evolve easily ;-)
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-09 09:51:57 -05:00
Paul POULAIN
ec2ec47418
removing the notes field from parcel recieve.
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-09 09:51:43 -05:00
Paul POULAIN
d02a48a977
minor spelling fix, the column was not displayed
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-09 09:51:38 -05:00
Joshua Ferraro
6cdf0832e2
new virtual shelves changes, keyed by biblionumber
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-09 09:17:49 -05:00
Joshua Ferraro
0e0475b67a
gives the user the ability to re-login
2007-08-08 16:39:40 -05:00
Joshua Ferraro
f2cd577f25
give the user the option to re-login
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-08 16:33:46 -05:00
Joshua Ferraro
d5acfe9d73
update to virtual shelves -- approved
2007-08-08 13:12:47 -05:00
Joshua Ferraro
812ba6cd9c
working on virtual shelves cleanup, partially finished
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-08 11:39:24 -05:00
Joshua Ferraro
e9ae8c0686
patches from paul
2007-08-08 07:41:19 -05:00
Chris Cormack
2e4a11773c
Merge branch 'master' of /home/jmf/repos/koha-rm-root.git/
2007-08-08 07:36:43 -05:00
Joshua Ferraro
8ee881174f
Merge branch 'master' of /usr/local/git/koha_base.git/
2007-08-08 07:27:26 -05:00
Paul POULAIN
af1d4d541e
removing 2 useless files
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-08 07:25:09 -05:00
Paul POULAIN
b39fca73d4
fixing buggy url in cancel button
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-08 07:25:09 -05:00
Paul POULAIN
f9ac2fc14b
reordering & spell change for more consistency
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-08 07:25:09 -05:00
Paul POULAIN
9bdba0d861
fixing bug in API
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-08 07:25:09 -05:00
Paul POULAIN
7eacca4b79
reordering columns + adding qty recieved + cleaning html (class=... from 22 templates
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-08 07:25:09 -05:00
Joshua Ferraro
bf1fd83d08
set the branch at login
2007-08-07 15:45:03 -05:00
Joshua Ferraro
ab77322c08
adds the ability to set the branch at login,
...
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-07 15:41:19 -05:00
kados
40af15d8e6
changing permissions on templates and scripts
2007-08-07 13:20:51 -05:00
tipaul
e24c247915
adding confirmation to basket closing
2007-08-06 12:27:31 +00:00
jmf@arwen.metavore.com
2fc59a2e76
From c428933ebfa5f56e14f3b32824ebb368c3258c24 Mon Sep 17 00:00:00 2001
...
From: kados <jmf@arwen.metavore.com>
Date: Sat, 4 Aug 2007 20:06:28 -0500
Subject: [PATCH] changing permissions on templates
Signed-off-by: Chris Cormack <crc@arwen.metavore.com>
2007-08-04 22:41:28 -05:00
jmf@arwen.metavore.com
9519c14e32
From d201d6349a10adc69c4de95a6465e92b293eb4f6 Mon Sep 17 00:00:00 2001
...
From: kados <jmf@arwen.metavore.com>
Date: Sat, 4 Aug 2007 20:02:10 -0500
Subject: [PATCH] changing permissions
Signed-off-by: Chris Cormack <crc@arwen.metavore.com>
2007-08-04 22:41:19 -05:00
Chris Cormack
060d731bf6
Patch
2007-08-03 12:36:22 -05:00
tipaul
d7334d51ea
synch french templates
2007-08-01 09:22:37 +00:00
toins
ae706f0d7a
fix indentation.
2007-07-31 16:14:15 +00:00
toins
1a48872caa
fixed to work with addbiblio.
2007-07-31 16:11:48 +00:00
toins
aeae5685c0
display enhancement.
2007-07-31 16:06:59 +00:00
toins
3731406592
plugin rewrited to works with addbiblio.
...
NOTE :
Unimarc plugins has been fully tested but not MARC21 one.
Unimarc plugins respect the norme now.
2007-07-31 16:06:21 +00:00
toins
e14fdf1f5e
addbiblio cleaned.
...
TODO: There is still a encoding pb when modifying a biblio.
2007-07-31 16:03:09 +00:00
hpassini
46a99d8681
*** empty log message ***
2007-07-30 15:24:06 +00:00
toins
c07db4a97d
XHTML validation.
2007-07-26 15:23:11 +00:00
toins
942afede38
there is no detailprint for authorities
2007-07-26 15:22:31 +00:00
btoumi
9395334e69
add control of 'return date' if it 's a special or repeatable holidays , and return a right return date
...
(renewal)
2007-07-25 14:09:39 +00:00
toins
ee5c4c303c
display enhancement.
2007-07-24 14:17:07 +00:00
toins
6cea0e824e
do not write the result if there is no breeding id.
2007-07-24 14:10:05 +00:00
hdl
0fcce07183
Bug Fixing search order now relies on Template and not on internal lists.
2007-07-20 16:10:51 +00:00
hdl
4a6bb67c21
Adding tabs to shelves management (not tested.. It is a copy of dev_week)
...
Bug Fixing sort by on opac-srach.pl
2007-07-20 15:39:36 +00:00
hdl
2379316079
adding popup to display biblio at inventory
2007-07-20 14:04:16 +00:00
hdl
57cdaee5de
Putting order list into Template rather than setting this in a script. For translations.
2007-07-20 07:49:06 +00:00
hdl
b54e5f934e
Putting order list into Template rather than setting this in a script. For translattions.
2007-07-20 07:41:53 +00:00
toins
858f4f85ca
s/UNLESS/IF/
2007-07-19 14:59:58 +00:00
toins
f570fa4ec8
fix typo
2007-07-19 14:01:39 +00:00
toins
0c5f1a7a66
refine your search is not available on NoZebra.
2007-07-19 13:20:53 +00:00
hdl
0bba8edb0d
Adding | as separation between authors and subjects and urls.
2007-07-19 13:06:37 +00:00
toins
b652e0c300
fix typo
2007-07-19 12:25:50 +00:00
toins
43809f2a92
disable to change password if syspref is set to '0'
2007-07-19 09:46:47 +00:00
toins
5c5c2471e5
do not show "change my password" if syspref is set to '0'
2007-07-19 09:39:56 +00:00
hdl
fbec734d57
Adding selection by location for inventory
2007-07-19 07:40:08 +00:00
toins
a9b9f8002b
using LoginBranchnameShort instead of LoginBranchname.
2007-07-17 09:28:52 +00:00
toins
c7a263aa11
bug fix : do not display login box if opagloginuser syspref is set to '0'
2007-07-16 15:55:28 +00:00
toins
466979fff0
fix XHTML syntax error.
...
writing method="post" instead of method="POST"
2007-07-16 15:54:08 +00:00
hdl
4d5ed7ac27
AddBiblio can be executed as a popup now.
2007-07-16 15:41:40 +00:00
toins
3e4537f488
bug fix : bookbag was display even if opacbookbag syspref was set to '0'
2007-07-16 15:40:24 +00:00
hdl
eb8c3f432b
- two periodicities 2/day and 3/week
...
- two other non critic periodicity unknown and without regularity.
Adding popup facility for create Biblio and subscription-renew
2007-07-16 15:39:43 +00:00
hdl
581f7a8e41
Adding popup stylesheet.
2007-07-16 15:34:05 +00:00
rangi
bf7eaca974
Fix for bug 1313, silent failure when entering manual invoice with invalid
...
itemnumber
2007-07-15 22:19:01 +00:00
toins
644e340fdb
GPL added + tmpl display fix.
2007-07-13 16:01:32 +00:00
toins
71894b6830
adding a pagination bar
2007-07-13 15:37:20 +00:00
toins
5d3d4523f4
using a white logo.
2007-07-13 13:18:07 +00:00
hdl
ba8fd94a62
minor changes
2007-07-12 16:40:47 +00:00
hdl
086f7656bf
Adding some information to resultlists.
2007-07-12 16:35:19 +00:00
hdl
ff7e73708c
systempreferences were too large.
...
Beware... Some values contains long links and should be used as links with shorter labels.
2007-07-12 16:17:53 +00:00
toins
267ca1b99a
displaying the query to search
...
re indenting
minor style enhancement
2007-07-12 15:30:13 +00:00
toins
3c1ae55fcf
adding a pagination bar & displaying only 20 results per page.
...
style enhancement
re indenting
2007-07-12 15:28:00 +00:00
hdl
830dfcf69a
adding maintenance script to warn users when maintenance is on.
2007-07-11 10:28:18 +00:00
toins
9ff24ae9b5
new img
2007-07-10 15:22:06 +00:00
toins
2cb738c5b4
auto focus on search box
2007-07-10 15:21:51 +00:00
toins
632f7efe63
removing note from results list
2007-07-10 15:17:02 +00:00
hdl
7494188760
Adding macle_plugin for FRANTIQ
2007-07-10 08:48:54 +00:00
hdl
fd416f67fd
Bug Fixing : Dynamic change of framework in edition would blank the biblio record.
2007-07-09 13:03:46 +00:00
rangi
73e6be1340
Fix for bug 1295 adding a borrower with the same cardnumber
2007-07-08 23:07:31 +00:00
hdl
399ac60815
Feature porting :
...
Adding SearchMyLibraryFirst feature to OPAC
It select the user's library for research by default
2007-07-06 15:21:29 +00:00
toins
8ea463b843
deleting a wrong and unused javascript code.
2007-07-06 13:36:28 +00:00
kados
97842f992c
reserves => holds, some language cleanup
2007-07-03 18:36:14 +00:00
kados
e2f7d04f41
more instances of branches => libraries
2007-07-03 18:33:35 +00:00
kados
49e815ce8e
more language improvements
2007-07-03 18:27:18 +00:00
kados
c62b2af7fd
Default use the pretty CSS, not the programmer one ... programmers can
...
switch back for ease of programming
2007-07-03 18:22:02 +00:00
kados
d585d5a2bc
This is a language commit. I've gone through most of the templates and
...
based on user feedback I've made the following changes:
Borrower, Member => Patron
Debarred => Restricted
Issues => Checkouts
Reserves => Holds
2007-07-03 18:19:49 +00:00
kados
f6f451ead3
warning the user about the redirect after the install has completed,
...
giveing them the option to click directly
2007-07-03 16:17:54 +00:00
tipaul
96386e6568
fixing some display bugs (itemtype not properly returned and a html table bug that makes items appear strangely
2007-07-03 13:47:44 +00:00
tipaul
a60c83d5b0
adding volume and volumeddesc field in the result list. Kados, pls check that it is interesting for you as well (sounds interesting for serials or volumed publications, where the title will be the same on every volume, like an encyclopedia
2007-07-03 10:12:34 +00:00
tipaul
24b5fab833
do not use REPLACE in SQL statements : it is not standard SQL, and don't work with integrity contraints : it's a delete/insert, not an UPDATE if the row exist. fixes the problem for borrower categories
2007-07-03 08:48:14 +00:00
tipaul
dd992ca4fe
french translations
2007-07-02 09:15:40 +00:00
tipaul
2d954fc7c3
minor template changes
2007-07-02 09:14:52 +00:00
rangi
d27c5bb427
Fix for bug 1296, making surnames uppercase a systems preference
2007-07-02 02:30:15 +00:00
rangi
c078fc3d9f
Fix for layout problem with css
2007-07-02 00:24:37 +00:00
hdl
e9035fd560
serials-home.tmpl
...
Display information provided serials-edit modifications.
2007-06-30 06:25:06 +00:00
hdl
f6c5b4db42
Receive serials now display both late AND waited serials
2007-06-30 05:24:23 +00:00
hdl
584096b7eb
Adding hierarchy for hierarchy showing in opac-authoritiesdetail.pl
2007-06-28 12:57:22 +00:00
hdl
aed457af42
Bug Fixing :
...
Authorities display hierarchies is now OK (provided hierarchy.css is in includes)
link with biblios OK.
2007-06-28 12:34:12 +00:00
hdl
781e44babf
Adding link to moremember to directly email members.
...
This could be considered as unsafe since emails are plain text and may be used by spam robots.
BUT : Authentication required to get to these pages may help securing those data.
2007-06-28 07:59:42 +00:00
tipaul
b1dc4e24b6
moving the _s() javascript function, that is used by getext for translation purposes to doc-head-clos to avoid having to create it everywhere
2007-06-27 13:01:36 +00:00
tipaul
b01fd6ffdb
adding location sql field to location column, with branch & callnumber
2007-06-26 09:23:02 +00:00
tipaul
8b29900d24
bugfix on adding a subfield
2007-06-26 09:17:56 +00:00
tipaul
726ef467a3
some graphic changes (minor)
2007-06-25 15:02:15 +00:00
hpassini
1c1f963416
add zipcode list
2007-06-21 15:49:25 +00:00
toins
82df71add7
synch fr & en
2007-06-21 13:11:27 +00:00
btoumi
fc411acde3
bug fixing :make possible to create a tag in biblio framework
2007-06-21 12:43:57 +00:00
toins
21bd304f43
don't display notes on result and fix wrong link.
2007-06-18 12:59:14 +00:00
tipaul
74c50d1965
french templates, updated
2007-06-18 07:56:03 +00:00
toins
5d610f543b
s/opac-botton.inc/intranet-botton.inc/
2007-06-15 16:34:35 +00:00
toins
5964ea2c5c
sync with english template.
2007-06-15 16:33:55 +00:00
toins
1f9733604d
removing notes from the results
2007-06-15 16:31:58 +00:00
tipaul
23427c51b9
some fixes (and only fixes)
2007-06-15 13:44:44 +00:00
toins
dc16768fbc
remove hardcoded link.
2007-06-15 08:52:36 +00:00
toins
0c5288d996
adding a link to opac-detail and removing link to itself.
2007-06-13 13:06:07 +00:00
toins
7fc3f2394b
fix a french error.
2007-06-11 15:22:15 +00:00
toins
5d69dd7160
this template is for intranet not for opac... including the good footer.
2007-06-11 15:21:19 +00:00
tipaul
5dd3f0229a
bugfixes (various), handling utf-8 without guessencoding (as suggested by joshua, fixing some zebra config files -for french but should be interesting for other languages-
2007-06-06 13:08:35 +00:00
tipaul
08daf60a70
improving opac default CSS to have a npl/ccfls like theme (look at http://o15.bureau.paulpoulain.com to see the result)
2007-06-06 13:07:15 +00:00
tipaul
85609421d1
adding 2 images for npl/ccfls opac
2007-06-06 13:05:30 +00:00
toins
5e775a5d36
correct a wrong link
2007-06-05 09:47:07 +00:00
toins
b0bcda97dc
auto focus on login when document is loaded.
2007-06-05 09:02:49 +00:00
tipaul
577a7bf094
some (minor, functionnaly speaking) bugfixes
2007-06-05 08:54:17 +00:00
toins
784bd215e7
this template is not used has a popup. including header to have stylesheet.
2007-06-05 08:45:18 +00:00
tipaul
e43c164395
fixing template & javascript bug on almost all plugins
2007-06-05 08:38:39 +00:00
btoumi
c5b97c4153
bug fixxing : add hidden field to allow modification of biblio framework .
2007-06-01 09:55:35 +00:00
tipaul
1e2d7c8b5a
cleaning duplicate entries in top menus & fixing a bug in "branch" index (zebra) & updated french translation
2007-05-30 09:33:18 +00:00
hdl
183d8de0ba
Bug Fix :
...
When no date, provide a manage tab and allow ppl to click on this tab.
2007-05-29 16:36:46 +00:00
tipaul
a04f92a30a
some minor bugfixes, templates improvements & zebra default config file changes
2007-05-29 16:36:11 +00:00
hdl
4ab40c0d65
Editing old numbers is allowed when subscription expired.
...
WARNING : Needs HTML::Template::Expr
(should be provided with HTML::Template::Pro)
2007-05-29 16:20:54 +00:00
tipaul
c8c6012195
merging opac details only for items with the same branch+location+itemcallnumber && putting publisher before publicationyear && lowering item column size in result page && fixing a missing branch reference in ccl.properties
2007-05-28 16:28:43 +00:00
tipaul
4618817646
adding series title to adv search (no need to expand more)
2007-05-28 15:59:30 +00:00
tipaul
29ac21862a
updated french translation + improved & fixed default zebra config files
2007-05-25 16:27:58 +00:00
btoumi
90dee1f3ee
add security when u delete biblio :
...
u must delete linked items before delete biblio
2007-05-25 09:27:46 +00:00
hdl
c01afc83b3
Changing pattern Number to Number only.
...
putting | together with create Biblio link.
2007-05-23 20:00:28 +00:00
tipaul
cbec15086e
french translation
2007-05-23 16:25:02 +00:00
tipaul
67d1dcf1f7
various bugfixes (minor) and french translation updated
2007-05-23 16:19:40 +00:00
tipaul
c4b132e15d
french translation
2007-05-23 16:16:55 +00:00
btoumi
b3e6242b34
add volume info in result of catalog search
2007-05-23 12:10:12 +00:00
tipaul
093f23bd8b
french translation
2007-05-23 10:13:40 +00:00
tipaul
f868260a75
french translation
2007-05-23 10:03:53 +00:00
tipaul
47eed676e6
removing useless dir
2007-05-23 10:00:23 +00:00
tipaul
c5cdbfcad3
french translation
2007-05-23 09:51:56 +00:00
hdl
4da57090ca
Using
...
Overdue flag
And not and expr.
And using toggle to highlight if not an overdue.
2007-05-23 09:44:15 +00:00
hdl
65ac7232d6
Adding yr for Date Of publication (would it be in 210$d or 4XX field... Unimarc)
2007-05-22 15:15:21 +00:00
tipaul
5ff7fcffa4
Bugfixes & improvements (various and minor) :
...
- updating templates to have tmpl_process3.pl running without any errors
- adding a drupal-like css for prog templates (with 3 small images)
- fixing some bugs in circulation & other scripts
- updating french translation
- fixing some typos in templates
2007-05-22 09:13:54 +00:00
hdl
340614fb3a
Adding color display for overdue book.
2007-05-22 09:08:58 +00:00
btoumi
1e21ba6968
add security when u delete biblio :
...
u must delete linked items before delete biblio
2007-05-21 08:44:17 +00:00
hdl
b05cb8df7b
Adding redirection to serials-collection.pl if no serials selected for edition.
2007-05-18 12:00:17 +00:00
hdl
a07da32c13
Modifying display to add some links back to subscription.
...
+ adding see all subscription attached link to the end of subscription table.
2007-05-18 09:27:40 +00:00
alaurin
700fcf77a6
minor bugfixing for reservations
2007-05-11 16:22:03 +00:00
tipaul
847b82ff23
NEW feature : RSS feeds. See POD & koha-devel for details
2007-05-09 10:09:40 +00:00
btoumi
cb27afeb6d
bug fixing : modify wrong date format display
2007-05-07 15:04:50 +00:00
tipaul
e1d907c688
various bugfixes on parameters modules + adding default NoZebraIndexes systempreference if it's empty
2007-05-04 16:24:08 +00:00
tipaul
35fae6a9e4
bugfixes for acquisition module
2007-05-04 13:59:53 +00:00
hdl
a0a7339f7f
Adding Bulkedition to results page.
2007-04-30 14:33:11 +00:00
hdl
d577d58fe3
Changing
...
facets to dl in search page.
facets header to dt.
2007-04-30 14:32:15 +00:00
tipaul
0c020dd8bf
renaming reserves & branchreserves to pendingreserves and waitingreserves
2007-04-23 16:42:59 +00:00
tipaul
9f42b8ad49
renaming currenttransfers to transferstoreceive
2007-04-23 15:21:17 +00:00
hdl
0b66bd800d
Code Cleaning Members.
...
- checkaccount and getborraccountno => GetBorrowerAcctRecord
Many changes in names,
some changes in function signature.
Will be detailed in a mail to kohadevel.
2007-04-23 13:10:07 +00:00
tipaul
5af8ae975b
removing "department" and replacing by items.location
2007-04-18 14:20:54 +00:00
tipaul
8456bee398
improving issues_stats by adding location & itemcallnumber filters
2007-04-18 14:19:52 +00:00
tipaul
43ad7fb4df
circulation cleaning continued: working on branchtransfers.pl (unfinished, but at least it compiles...
2007-04-17 16:24:59 +00:00
tipaul
b71839d85c
circulation cleaning continued: bufixing
2007-04-17 08:44:49 +00:00
hdl
fccd02e67b
Adding Finerules script.
...
It tears issuingrules script into two.
+ Fixing save button that would bring back to default branch.
2007-04-16 16:54:33 +00:00
hdl
2a973a4800
Deleting link pages.
2007-04-06 14:47:12 +00:00
btoumi
35ffbe6b5b
add security when u delete biblio :
...
u must delete linked items before delete biblio
2007-04-03 14:21:56 +00:00
tipaul
783977732f
reordering template
2007-03-30 13:29:20 +00:00
tipaul
eba2552086
Code cleaning of Biblio.pm (continued)
...
All subs have be cleaned :
- removed useless
- merged some
- reordering Biblio.pm completly
- using only naming conventions
Seems to have broken nothing, but it still has to be heavily tested.
Note that Biblio.pm is now much more efficient than previously & probably more reliable as well.
2007-03-29 16:45:53 +00:00
tipaul
a481fad4b7
Code cleaning :
...
== Biblio.pm cleaning (useless) ==
* some sub declaration dropped
* removed modbiblio sub
* removed moditem sub
* removed newitems. It was used only in finishrecieve. Replaced by a Koha2Marc+AddItem, that is better.
* removed MARCkoha2marcItem
* removed MARCdelsubfield declaration
* removed MARCkoha2marcBiblio
== Biblio.pm cleaning (naming conventions) ==
* MARCgettagslib renamed to GetMarcStructure
* MARCgetitems renamed to GetMarcItem
* MARCfind_frameworkcode renamed to GetFrameworkCode
* MARCmarc2koha renamed to TransformMarcToKoha
* MARChtml2marc renamed to TransformHtmlToMarc
* MARChtml2xml renamed to TranformeHtmlToXml
* zebraop renamed to ModZebra
== MARC=OFF ==
* removing MARC=OFF related scripts (in cataloguing directory)
* removed checkitems (function related to MARC=off feature, that is completly broken in head. If someone want to reintroduce it, hard work coming...)
* removed getitemsbybiblioitem (used only by MARC=OFF scripts, that is removed as well)
2007-03-29 13:30:31 +00:00
hpassini
0be6bb6f64
adding a tmpl if on checkbox to save checkbox input
2007-03-27 15:53:40 +00:00
hdl
2fadb98a16
Bug Fixing :
...
- new authoritiessearch API (without $dbh)
- new search API (using ccl)
2007-03-27 14:48:39 +00:00
toins
3e764c663f
- adding default value in marc_subfield_structure.
...
- now marc_subfields_structure displays subfields in tab view.
2007-03-19 18:35:12 +00:00
rych
3b7da07737
english language changes to tmpl
2007-03-18 03:00:40 +00:00
kados
a2ca594e7b
minor language improvements
2007-03-18 02:51:25 +00:00
kados
d0abc2ee47
improving English
2007-03-18 02:46:21 +00:00
kados
b17ec53ad6
improving English on the Koha Administration screen
2007-03-18 02:39:20 +00:00
kados
1682e779d5
improvements to the language of the installer
...
moved borrower categories defaults for English into a separate sql file
2007-03-18 02:16:23 +00:00
kados
f4c0b2f80d
improvements to the language of the installer
...
validation improvements for installer
improvements to descriptions of the optional sql data defaults
2007-03-17 23:29:33 +00:00
kados
56244e6efd
Using my precrash CVS copy I did the following:
...
cvs -z3 -d:ext:kados@cvs.savannah.nongnu.org:/sources/koha co -P koha
find koha.precrash -type d -name "CVS" -exec rm -v {} \;
cp -r koha.precrash/* koha/
cd koha/
cvs commit
This should in theory put us right back where we were before the crash
2007-03-16 01:25:08 +00:00
kados
755cd6a828
reinstating members.js
...
minor improvements to error tmpl
minor improvements to authorities blind search
2007-03-12 01:23:03 +00:00
kados
5f4542992a
This is a minor change, but affects all templates:
...
previously, it wasn't possible to insert anything into the <head> on
an individual template unless it was the title of the page. Now, the
structure is a bit more flexible to allow additional head elements to
be included.
2007-03-11 21:08:11 +00:00
kados
ea0f387c9c
no need for a separate barcodes doc-head include, switching to the
...
standard one
2007-03-11 19:19:18 +00:00
kados
fe421b8dd1
only show No results found if we're searching
2007-03-11 19:02:36 +00:00
kados
86d7e35ba9
removing members-home.tmpl, everything is in members.tmpl
2007-03-11 01:19:30 +00:00
kados
52f519de25
language improvements
2007-03-10 17:56:35 +00:00
kados
0dd40fa303
language cleanups
...
switch from HTML::Template to HTML::Template::Pro for report plugins
2007-03-10 17:01:00 +00:00
kados
320e72608b
adding calendar popup to inventory/stocktaking
...
improvements to english
2007-03-10 07:12:14 +00:00
kados
d126742c41
finish fixing spelling error on department
2007-03-10 06:28:06 +00:00
kados
9f4bf0d7f5
fix spelling department
...
improve English grammar in template
2007-03-10 06:22:52 +00:00
kados
27cd9a8d6f
language cleaning for borrower module
2007-03-10 01:53:23 +00:00
kados
4be97556c2
adding calendar popup to member entry
...
fixing some language on circ screens
2007-03-10 01:11:22 +00:00
kados
55485dbfe4
fixing validation
2007-03-09 23:49:09 +00:00
kados
f6c92d3f01
fixing typo in Date.pm and minor English in menus.inc
2007-03-09 23:36:24 +00:00
kados
8c32ad2792
English language changes
2007-03-09 22:53:17 +00:00
kados
5c127b896a
removing css templates from head
2007-03-09 21:48:50 +00:00
kados
fc01e6479e
removing default templates
2007-03-09 21:45:10 +00:00
kados
f2c49c1ed3
removing npl template files from head
2007-03-09 21:39:21 +00:00
tipaul
f8e9fb6445
rel_3_0 moved to HEAD (introducing new files)
2007-03-09 15:34:17 +00:00
tipaul
86e9db4e67
rel_3_0 moved to HEAD (removing useless file)
2007-03-09 15:22:00 +00:00
tipaul
2d07a40125
rel_3_0 moved to HEAD (removing useless file)
2007-03-09 15:16:32 +00:00
tipaul
a3999812e6
rel_3_0 moved to HEAD
2007-03-09 14:52:58 +00:00
tipaul
1ceaf1c3df
rel_3_0 moved to HEAD (removing useless file)
2007-03-09 14:48:28 +00:00
tipaul
70501283b3
rel_3_0 moved to HEAD
2007-03-09 14:41:32 +00:00
toins
cc27713c1a
now enable to manage reviews from intranet.
2006-12-08 11:24:58 +00:00
tgarip1957
f000f42e8e
Missing holiday images
2006-12-04 12:39:02 +00:00
tgarip1957
2e9b046e0a
Removing hardcoded default template image link
2006-09-28 14:25:22 +00:00
tgarip1957
f902901190
updated templates for new XML API
2006-09-27 21:40:47 +00:00
tgarip1957
24dfb9dd15
*** empty log message ***
2006-09-27 19:40:43 +00:00
tgarip1957
4bff4c201a
Patrons may pay fines in instalments. Librarian can alter the amount to receive
2006-09-22 00:18:00 +00:00
tgarip1957
8055b3e4ae
Added support for aqui management
2006-09-22 00:11:37 +00:00
tgarip1957
af3709aea8
A new acquisition to handle multiple tax values, and marc creation of biblios and items
2006-09-20 21:40:41 +00:00
tgarip1957
5b41a8e262
New XML API
2006-09-11 17:41:54 +00:00
tgarip1957
7467e4d3b5
Fixes a bug with MARChtml2xml and sync with dev_week
2006-09-11 17:13:58 +00:00
tgarip1957
fa073a6689
cleaning
2006-09-07 01:11:08 +00:00
tgarip1957
046c147949
Cleaning up
2006-09-07 00:40:11 +00:00
tgarip1957
7e52a5665c
Clean up before final commits
2006-09-06 16:21:03 +00:00
bob_lyon
b01a3de0c4
Adding ability to return search results for biblios that have no biblioitems
2006-09-05 22:24:10 +00:00
bob_lyon
3915174372
adding ability to make the search to return biblios with no items by using a hidden field
...
- if this functionality is not needed for ones koha then deleting the 'acq_search' line will let the search behave as before
2006-09-05 21:30:58 +00:00
btoumi
91ca86f596
bug fix:modifry wrong url in moremember.tmpl
2006-08-24 15:19:36 +00:00
btoumi
7390b53613
bug fix :modify test syntax for borrowermandatoryfield
2006-08-24 08:28:28 +00:00
btoumi
6226f5aa62
bug fix :add new condition in javascript to eliminate error when field not exist.
2006-08-23 15:05:18 +00:00
btoumi
6428692ace
add value for formfieldlist in all template ( A,C,P and I)
2006-08-23 14:40:48 +00:00
tipaul
17f0d8636b
deleting "illegal" PROG included files
2006-08-11 16:39:34 +00:00
tipaul
b1f388bbee
fixing some bugs in subscription add.
...
However, alt_subscription-add.pl seems so nice that I think it could be the official subscription-add... will drop a mail on koha-devel about this
2006-08-11 16:33:53 +00:00
tipaul
01d9a65f9c
adding menu-tools item
2006-08-11 16:33:01 +00:00
toins
2c006df1fb
template for opac-zoomsearch.
2006-08-11 16:19:25 +00:00
toins
e1b114b133
using opac-zoomsearch.pl instead of opac-search.pl
2006-08-11 16:17:01 +00:00
toins
216ac05deb
fix broken link.
2006-08-11 16:16:05 +00:00
toins
4f83ee3c7c
Add "ISO 10646 (Unicode)" for '100$a'.
2006-08-11 16:15:24 +00:00
tipaul
84184158eb
fixing a bug in template ('missing /tmpl_if)
2006-08-11 14:34:45 +00:00
tipaul
a4a6b581f5
proof of concept for includes directory (for html template) as way to change librarian interface.
2006-08-11 09:54:30 +00:00
tipaul
ae529d34ae
updating a little the templates (main menu on the left). Another commit will come very soon to validate the proof of concept of "includes" directory as having an easy personalized librarian (or OPAC) interface.
2006-08-11 09:51:45 +00:00
toins
01e1e3ed17
fix bad link to order.pl. The new one is to booksellers.pl.
2006-08-07 13:06:33 +00:00
toins
6e6822f593
call to suggestion-select.pl changed by call to newordersuggestion.pl
2006-08-02 08:24:26 +00:00
toins
151292d534
newordersuggestion.tmpl replaces suggestion-select.tmpl
2006-08-02 08:20:32 +00:00
toins
d9ce76765e
change link to newbiblio.pl to neworderempty.pl .
2006-08-02 08:10:06 +00:00