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