Commit graph

1873 commits

Author SHA1 Message Date
Joshua Ferraro
6ff1ecf14f adding levels for library, module, page and widgets per page
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
2007-08-29 11:45:05 -05:00
d7e634edf9 reset-fonts-grids.css is the YUI-Grids stylesheet
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-28 16:50:46 -05:00
62e94fd1b0 More changes to enable YUI-Grids CSS layout
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-28 16:50:44 -05:00
3262d91a16 Modifications to enable YUI-Grids layout structure. Unfinished.
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-28 16:50:42 -05:00
Henri-Damien LAURENT
8319613763 BUG FIX
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-28 16:50:35 -05:00
c6131c4429 Corrections for XHTML compliance, again.
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-28 16:50:18 -05:00
Chris Cormack
58fa2e168b Removing windows linefeeds to get a patch to apply 2007-08-28 16:50:04 -05:00
Chris Cormack
7406ebd48f Removing \r characters 2007-08-23 21:35:21 -05:00
Joshua Ferraro
ec4e8ecf0f removing unused countryCodes dir
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-23 21:31:59 -05:00
Joshua Ferraro
27d45375d0 moving calendar to lib
Output.pm: sanatizing variable names
ran  perl -pi~ -e 's/\/includes\/calendar\//\/lib\/calendar\//' * in every staff template dir

Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-23 21:30:49 -05:00
Joshua Ferraro
cd0a858c47 move all css in includes to css dir
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-23 21:22:01 -05:00
Joshua Ferraro
3359654835 move hierarchy.css to css dir
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-23 21:22:00 -05:00
Joshua Ferraro
d1f6407baa moved images to img fixed installer path for templates
perl -pi~ -e 's/\/prog\/images\//\/prog\/img\//' *
perl -pi~ -e 's/\/prog\/en\/images\//\/prog\/img\//' *

Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-23 21:21:58 -05:00
Joshua Ferraro
d114e811c8 removing old barcodes, itemsLabelConfig, and printerConfig
Signed-off-by: Chris Cormack <crc@liblime.com>
2007-08-23 21:21:56 -05:00
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
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
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
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
2379316079 adding popup to display biblio at inventory 2007-07-20 14:04:16 +00:00
toins
0c5f1a7a66 refine your search is not available on NoZebra. 2007-07-19 13:20:53 +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
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
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
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
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
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
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
btoumi
fc411acde3 bug fixing :make possible to create a tag in biblio framework 2007-06-21 12:43:57 +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
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
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
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
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
btoumi
cb27afeb6d bug fixing : modify wrong date format display 2007-05-07 15:04:50 +00:00