koha.git
16 years agoadding labels_templates table
Ryan Higgins [Fri, 17 Aug 2007 23:47:25 +0000 (18:47 -0500)]
adding labels_templates table

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoupdating labels_conf table with extra koha columns
Ryan Higgins [Fri, 17 Aug 2007 23:47:24 +0000 (18:47 -0500)]
updating labels_conf table with extra koha columns

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
Signed-off-by: Chris Cormack <crc@liblime.com>
16 years ago1. remove quotes around integer values
Joshua Ferraro [Fri, 17 Aug 2007 19:03:05 +0000 (14:03 -0500)]
1. remove quotes around integer values

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoloading template 1st to have userenv set + fixing javasccript bug + reindenting
Paul POULAIN [Fri, 17 Aug 2007 16:07:21 +0000 (18:07 +0200)]
loading template 1st to have userenv set + fixing javasccript bug + reindenting

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoordering supplier list & reindenting a little
Paul POULAIN [Fri, 17 Aug 2007 16:07:20 +0000 (18:07 +0200)]
ordering supplier list & reindenting a little

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoAdding missing barcode.pl
Owen Leonard [Thu, 16 Aug 2007 16:34:21 +0000 (11:34 -0500)]
Adding missing barcode.pl

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agochanging Session table structure (due to CGI::Sessions)
Paul POULAIN [Thu, 16 Aug 2007 10:46:13 +0000 (12:46 +0200)]
changing Session table structure (due to CGI::Sessions)

I switch to 3.00.00.002, that's another test to check that everything is fine with the new kohaversion management.
Work like a charm...

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoremoving useless script
Paul POULAIN [Thu, 16 Aug 2007 10:46:12 +0000 (12:46 +0200)]
removing useless script

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoAdding KOHAVERSION management.
Paul POULAIN [Thu, 16 Aug 2007 10:28:49 +0000 (12:28 +0200)]
Adding KOHAVERSION management.

(adding forgotten kohaversion.pl)

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoAdding KOHAVERSION management.
Paul POULAIN [Thu, 16 Aug 2007 10:28:48 +0000 (12:28 +0200)]
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>
16 years agosome minor changes in template
Paul POULAIN [Thu, 16 Aug 2007 10:28:47 +0000 (12:28 +0200)]
some minor changes in template

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoshow callnumber in result list and update SQL by using LEFT JOIN
Paul POULAIN [Thu, 16 Aug 2007 10:28:46 +0000 (12:28 +0200)]
show callnumber in result list and update SQL by using LEFT JOIN

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoadding supplier deletion feature.
Paul POULAIN [Thu, 16 Aug 2007 10:28:45 +0000 (12:28 +0200)]
adding supplier deletion feature.

A supplier can be deleted ONLY if it has NO basket

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agocontent-type was incorrectly set in InstallAuth.pm
Joshua Ferraro [Thu, 16 Aug 2007 02:20:17 +0000 (21:20 -0500)]
content-type was incorrectly set in InstallAuth.pm

Adding 'wizard' and 'login' detection

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoreintroducing an important line in TransformeMarcToKoha
Paul POULAIN [Tue, 14 Aug 2007 17:06:50 +0000 (19:06 +0200)]
reintroducing an important line in TransformeMarcToKoha

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agofixes to fine management
Paul POULAIN [Tue, 14 Aug 2007 17:06:49 +0000 (19:06 +0200)]
fixes to fine management

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agospelling error
Paul POULAIN [Tue, 14 Aug 2007 17:06:48 +0000 (19:06 +0200)]
spelling error

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoshow the departure date if close or past
Paul POULAIN [Tue, 14 Aug 2007 17:06:47 +0000 (19:06 +0200)]
show the departure date if close or past

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agosome template cleaning, using right action tool bar for buttons
Paul POULAIN [Tue, 14 Aug 2007 17:06:46 +0000 (19:06 +0200)]
some template cleaning, using right action tool bar for buttons

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agofixing cleanborrowers
Paul POULAIN [Tue, 14 Aug 2007 17:06:45 +0000 (19:06 +0200)]
fixing cleanborrowers

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoshow username instead of cardnumber
Paul POULAIN [Tue, 14 Aug 2007 17:03:00 +0000 (19:03 +0200)]
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.

16 years agodon't show the issuer on OPAC
Paul POULAIN [Tue, 14 Aug 2007 17:02:59 +0000 (19:02 +0200)]
don't show the issuer on OPAC

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agofix bug in calendar handling
Paul POULAIN [Tue, 14 Aug 2007 17:02:58 +0000 (19:02 +0200)]
fix bug in calendar handling

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoThis commit fixes a bug in biblio encoding. things were mixed up when reporting item...
Paul POULAIN [Tue, 14 Aug 2007 17:02:57 +0000 (19:02 +0200)]
This commit fixes a bug in biblio encoding. things were mixed up when reporting item(s) into the biblio, to UPDATE biblioitems.marcxml, after a biblio modif (in MARC editor).

So, deal carefully with this commit pls, and check it for your setups, because the patch works for me, but I'm not sure to understand well why :\

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoremoving some unused directories
Joshua Ferraro [Mon, 13 Aug 2007 17:28:10 +0000 (12:28 -0500)]
removing some unused directories

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agofixing permissions on scripts
Joshua Ferraro [Mon, 13 Aug 2007 17:21:46 +0000 (12:21 -0500)]
fixing permissions on scripts

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoFixing a bug that was causing the installer to not check the password
Chris Cormack [Fri, 10 Aug 2007 20:35:32 +0000 (15:35 -0500)]
Fixing a bug that was causing the installer to not check the password

correctly

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoMerge branch 'master' of /home/jmf/repos/koha-rm-root.git/
Chris Cormack [Fri, 10 Aug 2007 17:15:13 +0000 (12:15 -0500)]
Merge branch 'master' of /home/jmf/repos/koha-rm-root.git/

16 years agorevisions to login page to make it pretty
Joshua Ferraro [Fri, 10 Aug 2007 17:11:22 +0000 (12:11 -0500)]
revisions to login page to make it pretty

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoChanging InstallAuth to use CGI::Session and fixing install.pl which broke
Chris Cormack [Fri, 10 Aug 2007 15:48:53 +0000 (10:48 -0500)]
Changing InstallAuth to use CGI::Session and fixing install.pl which broke

with the kohastruture.sql clean up

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agoRemoving warn in Auth.pm
Chris Cormack [Fri, 10 Aug 2007 15:48:29 +0000 (10:48 -0500)]
Removing warn in Auth.pm

Changing InstallAuth.pm to use CGI::Session

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
16 years agodon't check cardnumber on member modify
Paul POULAIN [Fri, 10 Aug 2007 09:48:24 +0000 (11:48 +0200)]
don't check cardnumber on member modify

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agodunno why a char has been added before #!/usr/bin/perl
Paul POULAIN [Fri, 10 Aug 2007 09:48:23 +0000 (11:48 +0200)]
dunno why a char has been added before #!/usr/bin/perl

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoRevert "set the branch at login"
Joshua Ferraro [Thu, 9 Aug 2007 15:44:52 +0000 (10:44 -0500)]
Revert "set the branch at login"

This reverts commit bf1fd83d087d13561ddd8ade870413a9912c5329.

Conflicts:

koha-tmpl/intranet-tmpl/prog/en/auth.tmpl

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoworking on adding library logi
Joshua Ferraro [Thu, 9 Aug 2007 15:44:51 +0000 (10:44 -0500)]
working on adding library logi

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoMerge branch 'mymerges'
Chris Cormack [Thu, 9 Aug 2007 15:12:00 +0000 (10:12 -0500)]
Merge branch 'mymerges'

16 years agopatch to fix marc21 leader
Joshua Ferraro [Fri, 10 Aug 2007 06:55:29 +0000 (01:55 -0500)]
patch to fix marc21 leader

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoMerge branch 'master' of /home/jmf/repos/koha-rm-root.git/
Chris Cormack [Thu, 9 Aug 2007 14:53:13 +0000 (09:53 -0500)]
Merge branch 'master' of /home/jmf/repos/koha-rm-root.git/

16 years agoadding a ExpandField feature to MARC editor : all subfields that are empty and not...
Paul POULAIN [Wed, 8 Aug 2007 15:39:46 +0000 (17:39 +0200)]
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>
16 years agopagination did not work anymore : we stepped only 1 record by 1 record. fixes the...
Paul POULAIN [Wed, 8 Aug 2007 15:39:45 +0000 (17:39 +0200)]
pagination did not work anymore : we stepped only 1 record by 1 record. fixes the problem

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoremoving the notes field from parcel recieve.
Paul POULAIN [Wed, 8 Aug 2007 15:39:44 +0000 (17:39 +0200)]
removing the notes field from parcel recieve.

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agominor spelling fix, the column was not displayed
Paul POULAIN [Wed, 8 Aug 2007 15:39:43 +0000 (17:39 +0200)]
minor spelling fix, the column was not displayed

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agochanging permissions of some acqui scripts
Paul POULAIN [Wed, 8 Aug 2007 13:46:15 +0000 (15:46 +0200)]
changing permissions of some acqui scripts

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoupdating kohastructure.sql by removing some useless tables & rows. See mail on koha...
Paul POULAIN [Wed, 8 Aug 2007 13:35:21 +0000 (15:35 +0200)]
updating kohastructure.sql by removing some useless tables & rows. See mail on koha-devel for more details

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoRevert "new virtual shelves changes, keyed by biblionumber -- approved"
Joshua Ferraro [Thu, 9 Aug 2007 14:29:36 +0000 (09:29 -0500)]
Revert "new virtual shelves changes, keyed by biblionumber -- approved"

This reverts commit 8af76042d82e2034061087e9b78df038e3b2a403.

16 years agonew virtual shelves changes, keyed by biblionumber -- approved
Joshua Ferraro [Thu, 9 Aug 2007 14:22:17 +0000 (09:22 -0500)]
new virtual shelves changes, keyed by biblionumber -- approved

16 years agonew virtual shelves changes, keyed by biblionumber
Joshua Ferraro [Thu, 9 Aug 2007 14:10:52 +0000 (09:10 -0500)]
new virtual shelves changes, keyed by biblionumber

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agogives the user the ability to re-login
Joshua Ferraro [Wed, 8 Aug 2007 21:39:40 +0000 (16:39 -0500)]
gives the user the ability to re-login

16 years agogive the user the option to re-login
Joshua Ferraro [Thu, 9 Aug 2007 14:25:21 +0000 (09:25 -0500)]
give the user the option to re-login

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoupdate to virtual shelves -- approved
Joshua Ferraro [Wed, 8 Aug 2007 18:12:47 +0000 (13:12 -0500)]
update to virtual shelves -- approved

16 years agoworking on virtual shelves cleanup, partially finished
Joshua Ferraro [Wed, 8 Aug 2007 21:29:43 +0000 (16:29 -0500)]
working on virtual shelves cleanup, partially finished

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoMore uneeded files, Patch from Paul
Chris Cormack [Wed, 8 Aug 2007 16:01:30 +0000 (11:01 -0500)]
More uneeded files, Patch from Paul

16 years agoFiles removed, no longer, Patch from Paul
Chris Cormack [Wed, 8 Aug 2007 15:58:26 +0000 (10:58 -0500)]
Files removed, no longer, Patch from Paul

deleted:    misc/Install.pm
deleted:    misc/installer-lite.pl
deleted:    misc/installer.pl
deleted:    misc/marc_datas/marc21_en/structure_def.sql
deleted:    misc/marc_datas/unimarc_fr/structure_def.sql

16 years agopatches from paul
Joshua Ferraro [Wed, 8 Aug 2007 12:41:19 +0000 (07:41 -0500)]
patches from paul

16 years agoMerge branch 'master' of /home/jmf/repos/koha-rm-root.git/
Chris Cormack [Wed, 8 Aug 2007 12:36:43 +0000 (07:36 -0500)]
Merge branch 'master' of /home/jmf/repos/koha-rm-root.git/

16 years agoremoving an old directory, that does not work anymore with koha 3.0
Paul POULAIN [Wed, 8 Aug 2007 12:06:18 +0000 (14:06 +0200)]
removing an old directory, that does not work anymore with koha 3.0

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoMerge branch 'master' of /usr/local/git/koha_base.git/
Joshua Ferraro [Wed, 8 Aug 2007 12:27:26 +0000 (07:27 -0500)]
Merge branch 'master' of /usr/local/git/koha_base.git/

16 years agoremoving an old test script
Paul POULAIN [Wed, 8 Aug 2007 12:06:16 +0000 (14:06 +0200)]
removing an old test script

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoreservelist.pl is now in Koha itself, in circ/transfertodo.pl, removing the old script
Paul POULAIN [Wed, 8 Aug 2007 12:06:15 +0000 (14:06 +0200)]
reservelist.pl is now in Koha itself, in circ/transfertodo.pl, removing the old script

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agocleaning misc/amazonratings directory : it is included in amazon api, and no more...
Paul POULAIN [Wed, 8 Aug 2007 12:06:14 +0000 (14:06 +0200)]
cleaning misc/amazonratings directory : it is included in amazon api, and no more usefull

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoremoving statecollection, replaced by serials-collection
Paul POULAIN [Wed, 8 Aug 2007 12:06:13 +0000 (14:06 +0200)]
removing statecollection, replaced by serials-collection

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agosubscription copy is now a parameter of subscription-add.pl Removing the old script
Paul POULAIN [Wed, 8 Aug 2007 12:06:12 +0000 (14:06 +0200)]
subscription copy is now a parameter of subscription-add.pl Removing the old script

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoZ3950.pm is no more used anywhere. removing it
Paul POULAIN [Wed, 8 Aug 2007 12:06:11 +0000 (14:06 +0200)]
Z3950.pm is no more used anywhere. removing it

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoremoving 2 useless files
Paul POULAIN [Wed, 8 Aug 2007 11:39:44 +0000 (13:39 +0200)]
removing 2 useless files

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agofixing dirty bug : ccl.properties is case sensitive. CountAuthority failed, and thus...
Paul POULAIN [Wed, 8 Aug 2007 10:00:00 +0000 (12:00 +0200)]
fixing dirty bug : ccl.properties is case sensitive. CountAuthority failed, and thus authority search failed also...

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agofixing buggy reserve script
Paul POULAIN [Wed, 8 Aug 2007 09:59:59 +0000 (11:59 +0200)]
fixing buggy reserve script

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoremoved useless systempref
Paul POULAIN [Wed, 8 Aug 2007 09:59:58 +0000 (11:59 +0200)]
removed useless systempref

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agofixing buggy url in cancel button
Paul POULAIN [Wed, 8 Aug 2007 09:59:57 +0000 (11:59 +0200)]
fixing buggy url in cancel button

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoreordering & spell change for more consistency
Paul POULAIN [Wed, 8 Aug 2007 09:59:56 +0000 (11:59 +0200)]
reordering & spell change for more consistency

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agofixing bug in API
Paul POULAIN [Wed, 8 Aug 2007 09:59:55 +0000 (11:59 +0200)]
fixing bug in API

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoreordering columns + adding qty recieved + cleaning html (class=... from 22 templates
Paul POULAIN [Wed, 8 Aug 2007 09:59:54 +0000 (11:59 +0200)]
reordering columns + adding qty recieved + cleaning html (class=... from 22 templates

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoformatting date
Paul POULAIN [Wed, 8 Aug 2007 09:59:53 +0000 (11:59 +0200)]
formatting date

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agotidying SQL query
Paul POULAIN [Wed, 8 Aug 2007 09:59:52 +0000 (11:59 +0200)]
tidying SQL query

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agofixing API change
Paul POULAIN [Wed, 8 Aug 2007 09:59:51 +0000 (11:59 +0200)]
fixing API change

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agowrong redirect link fixed
Paul POULAIN [Wed, 8 Aug 2007 09:59:50 +0000 (11:59 +0200)]
wrong redirect link fixed

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoadding path for apache
Paul POULAIN [Wed, 8 Aug 2007 09:59:49 +0000 (11:59 +0200)]
adding path for apache

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoset the branch at login
Joshua Ferraro [Tue, 7 Aug 2007 20:45:03 +0000 (15:45 -0500)]
set the branch at login

16 years agoMerge branch 'master' of /home/jmf/repos/koha-rm-root.git/
Chris Cormack [Tue, 7 Aug 2007 20:43:42 +0000 (15:43 -0500)]
Merge branch 'master' of /home/jmf/repos/koha-rm-root.git/

16 years agoadds the ability to set the branch at login,
Joshua Ferraro [Wed, 8 Aug 2007 13:37:04 +0000 (08:37 -0500)]
adds the ability to set the branch at login,

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years ago adding CGI::Session dependency for recent session re-write
Joshua Ferraro [Tue, 7 Aug 2007 18:55:41 +0000 (13:55 -0500)]
adding CGI::Session dependency for recent session re-write

16 years agotaking out a warn
Joshua Ferraro [Wed, 8 Aug 2007 11:51:38 +0000 (06:51 -0500)]
taking out a warn

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoMerge branch 'master' of /home/jmf/repos/koha-rm-root.git/
Chris Cormack [Tue, 7 Aug 2007 18:54:12 +0000 (13:54 -0500)]
Merge branch 'master' of /home/jmf/repos/koha-rm-root.git/

16 years agoadding CGI::Session dependency for recent session re-write
Joshua Ferraro [Wed, 8 Aug 2007 11:46:58 +0000 (06:46 -0500)]
adding CGI::Session dependency for recent session re-write

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoChanging sessions table to work with CGI::Session
Chris Cormack [Tue, 7 Aug 2007 17:56:51 +0000 (12:56 -0500)]
Changing sessions table to work with CGI::Session

No longer need all the extra columns, its stored in the a_session, and with CGI::Session
you get back a session object which you can do things like
my $userid = $session->param('userid');

Signed-off-by: kados <jmf@liblime.com>
16 years agoAuth.pm rewritten to use CGI::Session
Chris Cormack [Tue, 7 Aug 2007 17:56:09 +0000 (12:56 -0500)]
Auth.pm rewritten to use CGI::Session

Signed-off-by: kados <jmf@liblime.com>
16 years agoScript to allow patrons to download the due dates for the books in ICalendar format
Chris Cormack [Sun, 5 Aug 2007 23:11:09 +0000 (18:11 -0500)]
Script to allow patrons to download the due dates for the books in ICalendar format

Signed-off-by: kados <jmf@liblime.com>
16 years agochanging permissions on templates and scripts
kados [Tue, 7 Aug 2007 18:20:51 +0000 (13:20 -0500)]
changing permissions on templates and scripts

16 years agoRemoving useless websites table from sql definition
paul [Tue, 7 Aug 2007 14:27:46 +0000 (16:27 +0200)]
Removing useless websites table from sql definition

Signed-off-by: Chris Cormack <crc@liblime.com>
16 years agoadding confirmation to basket closing
tipaul [Mon, 6 Aug 2007 12:27:31 +0000 (12:27 +0000)]
adding confirmation to basket closing

16 years agoFixing bad character
Chris Cormack [Sun, 5 Aug 2007 03:45:15 +0000 (22:45 -0500)]
Fixing bad character

16 years agoFrom 0751ba130288bc69e9e563473e7fc25551edc40e Mon Sep 17 00:00:00 2001
jmf@arwen.metavore.com [Sun, 5 Aug 2007 18:11:23 +0000 (13:11 -0500)]
From 0751ba130288bc69e9e563473e7fc25551edc40e Mon Sep 17 00:00:00 2001
From: kados <jmf@arwen.metavore.com>
Date: Sat, 4 Aug 2007 20:10:51 -0500
Subject: [PATCH] fixing permissions on all scripts

Signed-off-by: Chris Cormack <crc@arwen.metavore.com>
16 years agoFrom c428933ebfa5f56e14f3b32824ebb368c3258c24 Mon Sep 17 00:00:00 2001
jmf@arwen.metavore.com [Sun, 5 Aug 2007 18:07:10 +0000 (13:07 -0500)]
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>
16 years agoFrom d201d6349a10adc69c4de95a6465e92b293eb4f6 Mon Sep 17 00:00:00 2001
jmf@arwen.metavore.com [Sun, 5 Aug 2007 18:02:55 +0000 (13:02 -0500)]
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>
16 years agoReadding file to HEAD.
thd [Sat, 4 Aug 2007 23:21:50 +0000 (23:21 +0000)]
Readding file to HEAD.

16 years agoperltidy opac-rss.pl
kados [Fri, 3 Aug 2007 23:42:47 +0000 (18:42 -0500)]
perltidy opac-rss.pl

16 years agoPerltidy opac-logout.pl
Chris Cormack [Fri, 3 Aug 2007 22:36:43 +0000 (17:36 -0500)]
Perltidy opac-logout.pl

16 years agoPerltidy opac-main.pl
Chris Cormack [Fri, 3 Aug 2007 22:31:16 +0000 (17:31 -0500)]
Perltidy opac-main.pl

16 years agoPerltidy mainpage.pl
Chris Cormack [Fri, 3 Aug 2007 22:28:27 +0000 (17:28 -0500)]
Perltidy mainpage.pl

16 years agoPerltidy and conflict resolve
Chris Cormack [Fri, 3 Aug 2007 22:23:05 +0000 (17:23 -0500)]
Perltidy and conflict resolve

16 years agoFixing conflict
Chris Cormack [Fri, 3 Aug 2007 22:14:36 +0000 (17:14 -0500)]
Fixing conflict