]> git.evergreen-ils.org Git - Evergreen.git/log
Evergreen.git
13 years agoMerge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen...
senator [Wed, 9 Feb 2011 22:15:09 +0000 (17:15 -0500)]
Merge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen-equinox into opac-tt-poc

13 years agomisc work on the results page, including:
senator [Wed, 9 Feb 2011 21:11:28 +0000 (16:11 -0500)]
misc work on the results page, including:

hold placement link,
result prev/next page links on top and bottom,
edition and physical description,
add in previously missing filtersort template

13 years agoReduce hard-coded strings in Serial Control interfaces
dbwells [Wed, 9 Feb 2011 18:57:50 +0000 (18:57 +0000)]
Reduce hard-coded strings in Serial Control interfaces

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19419 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoallow item status update if either status-specific perm is allowed or UPDATE_COPY...
erickson [Wed, 9 Feb 2011 18:22:14 +0000 (18:22 +0000)]
allow item status update if either status-specific perm is allowed or UPDATE_COPY is allowed.  fire off related A/T events after the initial transaction has been committed

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19414 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agohey, maybe I should commit sometime today
senator [Tue, 8 Feb 2011 23:12:05 +0000 (18:12 -0500)]
hey, maybe I should commit sometime today

results page partly working. woof.

13 years agotweak selector used for font_helper() CSS classes
phasefx [Tue, 8 Feb 2011 22:52:31 +0000 (22:52 +0000)]
tweak selector used for font_helper() CSS classes

Makes the flat-text MARC editor respect the global font settings,
resolving bug https://bugs.launchpad.net/evergreen/+bug/678078

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
git-svn-id: svn://svn.open-ils.org/ILS/trunk@19411 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoPatch from Robert Soulliere to update settings-tester.pl
miker [Tue, 8 Feb 2011 17:56:08 +0000 (17:56 +0000)]
Patch from Robert Soulliere to update settings-tester.pl

Changes include:

- Use Test::More perl module to replace eval/die tests for initial tests (as indicated in FIXME comment)
Note/question: should I add an install of the Test::More perl module in Makefile.install for Evergreen prerequisites?

- Add a statement to print postgresql version.

- Add an elsif during "driver" testing to say OK to SIP driver since this is used in telephony section. -- remove scary ERROR

- Add UUID::Tiny to perl module list of checks.
question: More perl module checks needed?

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19409 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoPatch from Thomas Berezansky addressing circ/hold config constraints, and their lack...
miker [Tue, 8 Feb 2011 17:22:00 +0000 (17:22 +0000)]
Patch from Thomas Berezansky addressing circ/hold config constraints, and their lack of usefulness.

The config.circ_matrix_matchpoint and config.hold_matrix_matchpoint tables have unique constraints that are intended to ensure that you have at most one entry in the table for each set of input conditions.

These constraints operate over a set of fields that can (in whole or part) be set to null, and thus don't do what they are intended to in most (if not basically all) cases.

[This patch] replaces the unique constraints with unique indexes. Nullable fields are coalesced into empty strings so that they can be matched against, and the index only applies to those rows set as active.

The included upgrade script cleans up the tables by taking each set of non-unique rows the unique index would fail on and setting all but the first (in id order) to active=false. If an administrator determines that the wrong row was left active they can toggle active off on the one that was left and back on for the correct one.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19408 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoRemove syntax error from O:A:Storage:Publisher:authority and add strict pragma
dbs [Tue, 8 Feb 2011 06:20:36 +0000 (06:20 +0000)]
Remove syntax error from O:A:Storage:Publisher:authority and add strict pragma

Came across a line of dead code while debugging a related problem, and
noticed that strict/warnings wasn't in place, so I culled the dead code
and added use strict/use warnings accordingly (now that we no longer
have the syntax error caused by the dead code).

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19406 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoCreate authorities that only contain controlled subfields (LP 712496)
dbs [Tue, 8 Feb 2011 06:12:24 +0000 (06:12 +0000)]
Create authorities that only contain controlled subfields (LP 712496)

Selecting "Create authority" on a field containing uncontrolled subfields
would generate an authority record that contained those uncontrolled
subfields. This would, in turn, prevent the "Validate" button from operating
correctly - if you added a 700 with $a and $c subfields, clicked "Create
authority", and then immediately clicked "Validate", the field would show
up as red.

Now we filter out the uncontrolled subfields before they get sent to
the "Create authority" function, avoiding this validation problem.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19404 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoEnsure new authority ID subfield is inserted in the correct XUL DOM location
dbs [Tue, 8 Feb 2011 05:11:47 +0000 (05:11 +0000)]
Ensure new authority ID subfield is inserted in the correct XUL DOM location

Addresses LP 712499. After creating an authority via the context menu
in the MARC editor, the new ID subfield ($0) would be created right after
the subfield on which the context menu was invoked. It turns out that it
was being placed in the wrong location, and one symptom was that the
Validate button would not validate the controlled field against the newly
created authority.

Now we hunt through the parent DOM nodes until we find the 'sf_box' element
and then we append the ID subfield to that node. We also eliminate some
duplicate code by defining a common function so that the problem can be
fixed in one stroke...

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19402 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoPrevent authority context menu on whitespace content
dbs [Tue, 8 Feb 2011 03:49:36 +0000 (03:49 +0000)]
Prevent authority context menu on whitespace content

Continuing the refinement of LP 712538, if the subfield contains
only whitespace, treat it as though it were empty for the purposes
of the context menu.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19399 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoPrevent authority context menu from being displayed on empty content (LP 712538)
dbs [Tue, 8 Feb 2011 03:43:08 +0000 (03:43 +0000)]
Prevent authority context menu from being displayed on empty content (LP 712538)

It's confusing to have the authority context menu - particularly the
"Create authority" options - appear for empty content. Check to ensure
that the subfield being clicked on actually has some content before
displaying the authority context menu.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19398 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoMerge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen...
senator [Mon, 7 Feb 2011 22:45:29 +0000 (17:45 -0500)]
Merge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen-equinox into opac-tt-poc

13 years agohome page looks like kcls prod version now rather than dev
senator [Mon, 7 Feb 2011 22:44:46 +0000 (17:44 -0500)]
home page looks like kcls prod version now rather than dev

13 years agobasic search "works" inasmuch as it leads to a GET request against the
senator [Mon, 7 Feb 2011 22:10:38 +0000 (17:10 -0500)]
basic search "works" inasmuch as it leads to a GET request against the
results page as it should. not that the results page itself works yet.

13 years agologin page working (just for login, not the extras like "remember me")
senator [Mon, 7 Feb 2011 21:53:28 +0000 (16:53 -0500)]
login page working (just for login, not the extras like "remember me")

13 years agoctx.media_prefix for all images and css
senator [Mon, 7 Feb 2011 21:46:39 +0000 (16:46 -0500)]
ctx.media_prefix for all images and css

13 years agoRender entities as calls to l(). Goodbye DTD
senator [Mon, 7 Feb 2011 21:41:20 +0000 (16:41 -0500)]
Render entities as calls to l(). Goodbye DTD

13 years agopreparing a could of docs for entitization (fix wrong ent references)
senator [Mon, 7 Feb 2011 20:35:14 +0000 (15:35 -0500)]
preparing a could of docs for entitization (fix wrong ent references)

13 years agoShove the POC out of the way, move the KCLS-derived stuff in
senator [Mon, 7 Feb 2011 19:01:39 +0000 (14:01 -0500)]
Shove the POC out of the way, move the KCLS-derived stuff in

13 years agoBig move of css, images, js
senator [Mon, 7 Feb 2011 17:36:35 +0000 (12:36 -0500)]
Big move of css, images, js

13 years agoRemove a ton of javascript. A little more to come
senator [Mon, 7 Feb 2011 17:06:06 +0000 (12:06 -0500)]
Remove a ton of javascript. A little more to come

13 years agoNever got the place_hold page in until just now
senator [Fri, 4 Feb 2011 22:14:15 +0000 (17:14 -0500)]
Never got the place_hold page in until just now

parts/place_hold.tt2 needs css/js attention already seen by other
templates in parts/

13 years agoFix ModsParser.pm bug involving invalid ISBNs. See bug #697398.
dbwells [Fri, 4 Feb 2011 18:51:45 +0000 (18:51 +0000)]
Fix ModsParser.pm bug involving invalid ISBNs.  See bug #697398.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19383 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agokill a lot of inline styling, add some more js stubs, fix a bug in advanced.tt2
senator [Fri, 4 Feb 2011 16:33:21 +0000 (11:33 -0500)]
kill a lot of inline styling, add some more js stubs, fix a bug in advanced.tt2

13 years agocorrect some style= that should be class=
senator [Fri, 4 Feb 2011 15:41:37 +0000 (10:41 -0500)]
correct some style= that should be class=

13 years agoutils changes
senator [Fri, 4 Feb 2011 15:41:23 +0000 (10:41 -0500)]
utils changes

13 years agoremove debugging remnant
phasefx [Fri, 4 Feb 2011 06:29:30 +0000 (06:29 +0000)]
remove debugging remnant

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19382 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoreset "no change" label whenever a specific row in the check-in interface is selected...
phasefx [Fri, 4 Feb 2011 06:27:22 +0000 (06:27 +0000)]
reset "no change" label whenever a specific row in the check-in interface is selected, but for now, only if the transaction has a balance owed

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19381 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agostarted moving some inline styles into css classes
senator [Fri, 4 Feb 2011 01:24:28 +0000 (20:24 -0500)]
started moving some inline styles into css classes

Here's the deal so far: all the inline styles are covered by one class
in semiauto.css, but those were created programatically and reflect no
understanding of the relationship between the purpose of any given
element that's styled and what its style is.  These auto-generated
styles also are kind of redundant, since with many of them, instead of
using the style with a long definition, you could use a combination of
smaller styles.

The existing markup uses many slightly different style attributes, so
there's plenty of stuff like "width: 12", "width: 13", "width: 14", etc,
so there's no way to map a lot of this to semantically meaningful names.
some of these classes are just going to end up with names like
"wide-fourteen" that are no better than inline styles.

But others, as we find them manually, can be grouped and renamed into
something meaningful, and sometimes style can be put into prexisting id
and class definitions. Should be a couple more hours work.

semiauto.css reflects progress with the generated classes.

changes to style.css reflect early places where style could be moved
into pre-existing classes.

13 years agomove temporary kcls format-icon table from mod_perl to template land
senator [Fri, 4 Feb 2011 00:35:13 +0000 (19:35 -0500)]
move temporary kcls format-icon table from mod_perl to template land

13 years agoported open-ils.actor.user.transaction.[fleshed.]retrieve to CStoreEditor both for...
erickson [Fri, 4 Feb 2011 00:14:26 +0000 (00:14 +0000)]
ported open-ils.actor.user.transaction.[fleshed.]retrieve to CStoreEditor both for cleanup and to take advantage of .authoritative.  Use authoritative version in staff client

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19379 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoportal tweaks; don't link to launchpad
phasefx [Thu, 3 Feb 2011 23:50:16 +0000 (23:50 +0000)]
portal tweaks; don't link to launchpad

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19378 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agomake the browser Reload button aware of tab locking for unsaved data
phasefx [Thu, 3 Feb 2011 23:40:50 +0000 (23:40 +0000)]
make the browser Reload button aware of tab locking for unsaved data

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19377 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoclear shelf expire time and some other fields when un-cancelling a hold
erickson [Thu, 3 Feb 2011 23:30:34 +0000 (23:30 +0000)]
clear shelf expire time and some other fields when un-cancelling a hold

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19375 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoMerge branch 'opac-tt-poc' of git+ssh://yeti.esilibrary.com/home/evergreen/evergreen...
Bill Erickson [Thu, 3 Feb 2011 21:50:17 +0000 (16:50 -0500)]
Merge branch 'opac-tt-poc' of git+ssh://yeti.esilibrary.com/home/evergreen/evergreen-equinox into opac-tt-poc

13 years agoIntegrate Locale::Maketext for string translations
Bill Erickson [Thu, 3 Feb 2011 21:47:59 +0000 (16:47 -0500)]
Integrate Locale::Maketext for string translations

Added support for configuring supported locales and specifying message
catalogs as gettext .po or .mo files.  All locales default to native
template strings when no translation is provided.

Updated oils_web config and added some inline template examples

13 years agoMerge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen...
senator [Thu, 3 Feb 2011 21:00:49 +0000 (16:00 -0500)]
Merge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen-equinox into opac-tt-poc

13 years agoa thought about the add/remove css funcs
senator [Thu, 3 Feb 2011 20:40:34 +0000 (15:40 -0500)]
a thought about the add/remove css funcs

13 years agoJS stubbed out, mostly. See longer commit msg.
senator [Thu, 3 Feb 2011 20:34:19 +0000 (15:34 -0500)]
JS stubbed out, mostly. See longer commit msg.

Here's the deal with JS so far.

A few instances of onfocus, onblur, onmouseout, and onmouseover have been
left alone, as they're doing simple cosmetic things.

A lot of instances of onclick remain, and a couple onchange, but these
now either a) just do cosmetic things (hide/unhide) or b) call stubbed
out functions prepared in misc.js

That doesn't mean we won't still totally rip out lots of this JS, but
it leaves us a hint as to what is supposed to happen where.  I can
easily see us losing track of that later.  So anyway, many of the
stubbed functions will probably be replaced with purely server side
functionality later, but until then, they can serve as a kind of
documentation.

13 years agowhile the enter-key capturing is around, do it right at least
senator [Thu, 3 Feb 2011 20:03:54 +0000 (15:03 -0500)]
while the enter-key capturing is around, do it right at least

13 years agodeal with some onclick handlers, also with broken relative links from
senator [Thu, 3 Feb 2011 19:54:14 +0000 (14:54 -0500)]
deal with some onclick handlers, also with broken relative links from
myopac/* templates

13 years agoaddressed existing onchange handlers
senator [Thu, 3 Feb 2011 18:37:22 +0000 (13:37 -0500)]
addressed existing onchange handlers

13 years agoget rid of some onkeydown events handlers, as well as onload and onerror events
senator [Thu, 3 Feb 2011 18:15:39 +0000 (13:15 -0500)]
get rid of some onkeydown events handlers, as well as onload and onerror events
that aren't for real DOM events, but for dojo-related stuff

13 years agoKeep the swapTabs() function around only for the advanced search page
senator [Thu, 3 Feb 2011 17:56:10 +0000 (12:56 -0500)]
Keep the swapTabs() function around only for the advanced search page

Other use cases will be replaced with links to actual pages, or
otherwise dealt with.

13 years agoremove __setsortsel() - I think this can be handled in templates later
senator [Thu, 3 Feb 2011 17:53:22 +0000 (12:53 -0500)]
remove __setsortsel() - I think this can be handled in templates later

13 years agowell, almost all references to dojo were already gone
senator [Thu, 3 Feb 2011 17:37:11 +0000 (12:37 -0500)]
well, almost all references to dojo were already gone

For now i'm leaving alone a lot of instances of jsId attributes; they
might serve to remind us later of what some elements are for.

13 years agoall five main parts of their myopac page
senator [Thu, 3 Feb 2011 16:54:23 +0000 (11:54 -0500)]
all five main parts of their myopac page

now it's on to the serious js scrubbing (dojo parts are already gone). this is
going to take more than simply removing js in many cases, though, since
so much layout is accomplished by means of JS in the kcls skin,
especially in regards to subinterfaces and nested tabbiness

13 years agoTwo binding fixes for manage items
dbwells [Thu, 3 Feb 2011 16:47:49 +0000 (16:47 +0000)]
Two binding fixes for manage items

The first fix is more or less cosmetic.  When selecting a target unit, both areas need to refresh in order to not show the selected unit's items in the main list.

The second fix involves handling cases where moving items from one unit to another does not empty the 'donor' unit.  In those cases, we need to update the contents of both the new and the old unit.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19373 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoAuthorities: control 610/611, do not control 4xx by default
dbs [Thu, 3 Feb 2011 14:15:47 +0000 (14:15 +0000)]
Authorities: control 610/611, do not control 4xx by default

The 4xx fields in bibliographic records have not been controlled
fields for some time (1988 for CAN/MARC, 1999 for USMARC per)
http://www.loc.gov/marc/bibliographic/bd4xx.html; and
http://www.oclc.org/bibformats/en/4xx/default.shtm also lists
these as obsolete. So, remove them from the default controlled
fields in Evergreen.

Also, add 610/611 to the controlled fields list (per LP #712467).

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19371 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agomyopac circs page
senator [Wed, 2 Feb 2011 23:04:57 +0000 (18:04 -0500)]
myopac circs page

13 years agoa start to myopac
senator [Wed, 2 Feb 2011 22:17:32 +0000 (17:17 -0500)]
a start to myopac

13 years agolet due date show up correctly in the copy browser for circulating items
phasefx [Wed, 2 Feb 2011 20:51:40 +0000 (20:51 +0000)]
let due date show up correctly in the copy browser for circulating items

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19369 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoallow deletion of stat cat entries in the patron editor (or more accurately, rows...
phasefx [Wed, 2 Feb 2011 19:56:39 +0000 (19:56 +0000)]
allow deletion of stat cat entries in the patron editor (or more accurately, rows in actor.stat_cat_entry_usr_map) by blanking out the value

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19364 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agocirc.claim_return.mark_missing was superceded with circ.claim_return.copy_status...
phasefx [Wed, 2 Feb 2011 19:34:36 +0000 (19:34 +0000)]
circ.claim_return.mark_missing was superceded with circ.claim_return.copy_status.  It's still lingering in 1.6.1-2.0-upgrade-db.sql, and in other branches.  Thanks to bshum for noticing

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19363 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoexit finish_fines_and_voiding() if there is no open circ
erickson [Wed, 2 Feb 2011 18:53:25 +0000 (18:53 +0000)]
exit finish_fines_and_voiding() if there is no open circ

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19361 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoApply autogenerate barcode trigger to serial.unit to enable serial checkin
dbs [Wed, 2 Feb 2011 03:28:33 +0000 (03:28 +0000)]
Apply autogenerate barcode trigger to serial.unit to enable serial checkin

Serial checkin tried to use the '@@AUTO' macro to autogenerate barcodes,
but unfortunately the required trigger had only been defined on the parent
table asset.copy and not on the child table serial.unit. Here we define the
trigger on serial.unit to resolve that problem.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19359 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agomake sure that inline overdue fines generation completes before we attempt to void...
erickson [Tue, 1 Feb 2011 23:39:00 +0000 (23:39 +0000)]
make sure that inline overdue fines generation completes before we attempt to void overdues fines in checkin, otherwise it's possible to create multiple services (storage and cstore) competing for the same DB row mid-transaction, resulting in cstore timeouts and rollback of checkin.  This could happen with backdated or amnesty checkins

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19357 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoAcq: Improving on r19351, don't let showCreatePane() be issued repeatedly to
senator [Tue, 1 Feb 2011 21:39:06 +0000 (21:39 +0000)]
Acq: Improving on r19351, don't let showCreatePane() be issued repeatedly to
fill the window with redundant dialogs, since a) it looks silly, and b) the
dialogs don't work when there are more than one of them. Thanks again Dan.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19355 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoThis should get this correct version of postgresql installed for clean
senator [Tue, 1 Feb 2011 21:22:40 +0000 (21:22 +0000)]
This should get this correct version of postgresql installed for clean
installations on debian-lenny, *if* your system has the backports repo enabled.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19353 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoAcq: make the "new provider" button under Admin -> Server Admin ->
senator [Tue, 1 Feb 2011 21:15:22 +0000 (21:15 +0000)]
Acq: make the "new provider" button under Admin -> Server Admin ->
Acquisitions -> Providers not produce a dialog with a ton of mysterious
whitespace. Spotted by Dan Scott.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19351 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agomore whitespace fixing; may seem trivial, but will save a lot of time
senator [Tue, 1 Feb 2011 20:46:46 +0000 (15:46 -0500)]
more whitespace fixing; may seem trivial, but will save a lot of time
later in trying to understand what's what

13 years agoMerge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen...
senator [Tue, 1 Feb 2011 20:40:15 +0000 (15:40 -0500)]
Merge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen-equinox into opac-tt-poc

13 years agomore whitespace fixing, reorg, etc. note to self: JS in advanced page
senator [Tue, 1 Feb 2011 20:38:14 +0000 (15:38 -0500)]
more whitespace fixing, reorg, etc. note to self: JS in advanced page

13 years agowhitespace, syntax, and title fixes
senator [Tue, 1 Feb 2011 20:29:34 +0000 (15:29 -0500)]
whitespace, syntax, and title fixes

13 years agoforgot this for record
senator [Tue, 1 Feb 2011 20:25:55 +0000 (15:25 -0500)]
forgot this for record

13 years agorecord more complete
senator [Tue, 1 Feb 2011 20:25:29 +0000 (15:25 -0500)]
record more complete

13 years agoAdd record page; cleanup and reorg
senator [Tue, 1 Feb 2011 19:34:28 +0000 (14:34 -0500)]
Add record page; cleanup and reorg

13 years agoSerial: Little bug in the alt serials control item editor
senator [Mon, 31 Jan 2011 23:10:31 +0000 (23:10 +0000)]
Serial: Little bug in the alt serials control item editor

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19347 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoMerge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen...
senator [Mon, 31 Jan 2011 22:56:42 +0000 (17:56 -0500)]
Merge branch 'master' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen-equinox into opac-tt-poc

13 years agoresults page kinda there
senator [Mon, 31 Jan 2011 22:44:41 +0000 (17:44 -0500)]
results page kinda there

13 years agoprogress on the results page
senator [Mon, 31 Jan 2011 22:38:52 +0000 (17:38 -0500)]
progress on the results page

13 years agoa little consolidation, a little linking of new pages to each other
senator [Mon, 31 Jan 2011 21:20:08 +0000 (16:20 -0500)]
a little consolidation, a little linking of new pages to each other

13 years agomyopac login form
senator [Mon, 31 Jan 2011 20:52:35 +0000 (15:52 -0500)]
myopac login form

13 years agominor missing parts from adv search
senator [Mon, 31 Jan 2011 20:22:02 +0000 (15:22 -0500)]
minor missing parts from adv search

13 years agoadvanced page getting there
senator [Mon, 31 Jan 2011 19:08:39 +0000 (14:08 -0500)]
advanced page getting there

13 years agouse tabs & spaces consistently, bleh :)
phasefx [Mon, 31 Jan 2011 18:56:09 +0000 (18:56 +0000)]
use tabs & spaces consistently, bleh :)

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19345 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoIn actor.usr_purge_data, default destination user to admin (id=1).
phasefx [Mon, 31 Jan 2011 18:53:20 +0000 (18:53 +0000)]
In actor.usr_purge_data, default destination user to admin (id=1).

Destination user is where we move things like reports and acq picklists when
purging staff members.  However, if we tried to purge a patron that used to be
a staff member, then destination user was being set to null, which won't work
when updating things like requestor on holds.  The purge UI checks for the
STAFF_LOGIN permission on the user to be purged for determining whether to
prompt for a destination user or not.

Some alternatives to this change might include:
1) always asking for a destination user (and defaulting to admin or the
logged in staff member), or
2) robustifying the stored procedure and surrounding code to raise an
expected exception whenever this edge case hits, prompting the UI to try
again after asking for a destination user.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19344 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoenough super-lite js to make the advanced page with its tabbiness work
senator [Mon, 31 Jan 2011 18:10:20 +0000 (13:10 -0500)]
enough super-lite js to make the advanced page with its tabbiness work

13 years agocleanup and reorg parts so far
senator [Mon, 31 Jan 2011 17:56:42 +0000 (12:56 -0500)]
cleanup and reorg parts so far

13 years agokind of have the home page working, minus entity renderin
senator [Mon, 31 Jan 2011 17:21:25 +0000 (12:21 -0500)]
kind of have the home page working, minus entity renderin

13 years agoMerge branch 'opac-tt-poc' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergr...
senator [Mon, 31 Jan 2011 15:08:09 +0000 (10:08 -0500)]
Merge branch 'opac-tt-poc' of ssh://senator@yeti.esilibrary.com/home/evergreen/evergreen-equinox into opac-tt-poc

13 years agomoved EGCatLoader to be consistent w/ new perlmod layout
Bill Erickson [Mon, 31 Jan 2011 14:59:52 +0000 (09:59 -0500)]
moved EGCatLoader to be consistent w/ new perlmod layout

13 years agoMerge branch 'master' of git+ssh://yeti.esilibrary.com/home/evergreen/evergreen-equin...
Bill Erickson [Mon, 31 Jan 2011 14:54:05 +0000 (09:54 -0500)]
Merge branch 'master' of git+ssh://yeti.esilibrary.com/home/evergreen/evergreen-equinox into opac-tt-poc

13 years agoThe new, ultra-basic tests caught this syntax error in BadDebt.pm
dbs [Mon, 31 Jan 2011 03:41:40 +0000 (03:41 +0000)]
The new, ultra-basic tests caught this syntax error in BadDebt.pm

Yay for ultra-basic tests!

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19343 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoAdd basic unit tests for Evergreen Perl modules
dbs [Mon, 31 Jan 2011 03:30:42 +0000 (03:30 +0000)]
Add basic unit tests for Evergreen Perl modules

By "basic", I mean, "Can we use them without provoking a
syntax error?" and the answer is... all but one appear to
be clean, or have a legit reason for not being able to be
used normally. Stay tuned for the culprit...

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19342 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoClean up Module::Build of Evergreen Perl modules
dbs [Mon, 31 Jan 2011 02:26:28 +0000 (02:26 +0000)]
Clean up Module::Build of Evergreen Perl modules

Give OpenILS.pm a head1 POD section to satisfy Module::Build's dist_abstract demand

Remove MYMETA.yml as it is a generated file.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19341 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoMake Evergreen Perl modules installable via Module::Build to match OpenSRF
dbs [Mon, 31 Jan 2011 02:14:37 +0000 (02:14 +0000)]
Make Evergreen Perl modules installable via Module::Build to match OpenSRF

Build.PL gives us an install-time check on dependencies; right now
the required versions are not set, but we can update these easily
to start catching some of the problematic modules that have tripped
sites up in the past.

Build.PL really seems to want a top-level "OpenILS.pm" so add a placeholder
accordingly.

Adjust references to /src/perlmods/ to /src/perlmods/lib/ even though
a number of the affected scripts are probably cruft.

Use autoconf to provide the default paths in O:WWW:Web and O:WWW:Method;
next step is probably to teach autoconf to ask Build.PL to do that for
us to make the OpenILS Perl modules more independent.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19340 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoinitial bookbags stub page
Bill Erickson [Mon, 31 Jan 2011 01:16:54 +0000 (20:16 -0500)]
initial bookbags stub page

13 years agominor terminology change
Bill Erickson [Mon, 31 Jan 2011 00:51:22 +0000 (19:51 -0500)]
minor terminology change

13 years agoreport when 0 items to list in circs/holds page
Bill Erickson [Mon, 31 Jan 2011 00:51:05 +0000 (19:51 -0500)]
report when 0 items to list in circs/holds page

13 years agoadded sample update-email operation; cleaned out some debug code
Bill Erickson [Mon, 31 Jan 2011 00:50:32 +0000 (19:50 -0500)]
added sample update-email operation; cleaned out some debug code

13 years agoadded org selector to search form; added 'loc' param to search next/prev links
Bill Erickson [Mon, 31 Jan 2011 00:00:25 +0000 (19:00 -0500)]
added org selector to search form; added 'loc' param to search next/prev links

13 years agofixed some cache bugs; added org location/depth search params; added org settings...
Bill Erickson [Sun, 30 Jan 2011 23:57:47 +0000 (18:57 -0500)]
fixed some cache bugs; added org location/depth search params; added org settings handler

13 years agoprotect against undef string warnings
Bill Erickson [Sun, 30 Jan 2011 23:56:11 +0000 (18:56 -0500)]
protect against undef string warnings

13 years agoWhitespace. gah.
dbs [Sun, 30 Jan 2011 05:54:47 +0000 (05:54 +0000)]
Whitespace. gah.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19339 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoReplace a hard-coded path in Cronscript.pm with a configure variable
dbs [Sun, 30 Jan 2011 05:47:52 +0000 (05:47 +0000)]
Replace a hard-coded path in Cronscript.pm with a configure variable

As much as possible, we need to avoid hard-coded paths if we
ever want to be packagable.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19338 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoDon't attempt to control 4xx fields in records
dbs [Sun, 30 Jan 2011 05:10:11 +0000 (05:10 +0000)]
Don't attempt to control 4xx fields in records

Per LP bug # 708029, it doesn't make sense to apply an
authority control on a 4xx field; so remove those entries
from the authority tag map.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19334 dcc99617-32d9-48b4-a31d-7c20da2025e4

13 years agoUse the browse method instead of startwith for Manage Authorities, too
dbs [Sun, 30 Jan 2011 04:31:56 +0000 (04:31 +0000)]
Use the browse method instead of startwith for Manage Authorities, too

Now that the browse method is working properly, adopt it for the
Manage Authorities interface as well so that context around the
search term can be provided.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@19333 dcc99617-32d9-48b4-a31d-7c20da2025e4