Changeset 9533
- Timestamp:
- 05/08/08 12:06:30 (1 week ago)
- Location:
- branches/acq-experiment
- Files:
-
- 5 modified
- 1 copied
-
. (modified) (1 prop)
-
Open-ILS/src/perlmods/OpenILS/Application/Cat.pm (modified) (2 diffs)
-
Open-ILS/src/perlmods/OpenILS/WWW/AddedContent.pm (modified) (2 diffs)
-
Open-ILS/src/perlmods/OpenILS/WWW/AddedContent/Amazon.pm (modified) (1 diff)
-
Open-ILS/src/support-scripts/settings-tester.pl (modified) (1 diff)
-
Open-ILS/web/js/dojo/openils/CGI.js (copied) (copied from trunk/Open-ILS/web/js/dojo/openils/CGI.js)
Legend:
- Unmodified
- Added
- Removed
-
branches/acq-experiment
- Property svnmerge-integrated changed from /trunk:1-9513 to /trunk:1-9532
-
branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm
r9385 r9533 218 218 return $evt if $evt; 219 219 220 $rec->tcn_value($tcn) ;220 $rec->tcn_value($tcn) if ($tcn); 221 221 $rec->tcn_source($tsource); 222 222 … … 293 293 $record->source(bib_source_from_name($source)) if $source; 294 294 $record->tcn_source($tcn_source); 295 $record->tcn_value($tcn) ;295 $record->tcn_value($tcn) if ($tcn); 296 296 $record->creator($e->requestor->id); 297 297 $record->editor($e->requestor->id); -
branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/WWW/AddedContent.pm
r8079 r9533 87 87 88 88 return Apache2::Const::NOT_FOUND unless $handler and $type and $format and $key; 89 return $res if defined($res = $AC->serve_from_cache($type, $format, $key));90 return Apache2::Const::NOT_FOUND unless $AC->lookups_enabled;91 89 92 90 my $err; … … 95 93 96 94 return Apache2::Const::NOT_FOUND unless $handler->can($method); 95 return $res if defined($res = $AC->serve_from_cache($type, $format, $key)); 96 return Apache2::Const::NOT_FOUND unless $AC->lookups_enabled; 97 97 98 98 try { -
branches/acq-experiment/Open-ILS/src/perlmods/OpenILS/WWW/AddedContent/Amazon.pm
r7750 r9533 48 48 # -------------------------------------------------------------------------- 49 49 50 sub toc_html {51 my( $self, $key ) = @_;52 }53 54 sub toc_xml {55 my( $self, $key ) = @_;56 }57 58 sub toc_json {59 my( $self, $key ) = @_;60 }61 62 # --------------------------------------------------------------------------63 64 sub anotes_html {65 my( $self, $key ) = @_;66 }67 68 sub anotes_xml {69 my( $self, $key ) = @_;70 }71 72 sub anotes_json {73 my( $self, $key ) = @_;74 }75 76 77 # --------------------------------------------------------------------------78 79 sub excerpt_html {80 my( $self, $key ) = @_;81 }82 83 sub excerpt_xml {84 my( $self, $key ) = @_;85 }86 87 sub excerpt_json {88 my( $self, $key ) = @_;89 }90 91 # --------------------------------------------------------------------------92 93 sub reviews_html {94 my( $self, $key ) = @_;95 }96 97 # we have to aggregate the reviews98 sub reviews_xml {99 my( $self, $key ) = @_;100 }101 102 103 sub reviews_json {104 my( $self, $key ) = @_;105 }106 107 # --------------------------------------------------------------------------108 109 50 sub send_img { 110 51 my($self, $response) = @_; -
branches/acq-experiment/Open-ILS/src/support-scripts/settings-tester.pl
r9385 r9533 71 71 my $j_password = $conf->bootstrap->passwd; 72 72 my $j_port = $conf->bootstrap->port; 73 my $j_domain = $conf->bootstrap->domains->[0]; 73 # We should check for a domains element to catch likely upgrade errors 74 my $j_domain = $conf->bootstrap->domain; 74 75 my $settings_config = $conf->bootstrap->settings_config; 75 76 my $logfile = $conf->bootstrap->logfile;
