Changeset 42820 for branches/eam_branches/ipp-20230313/PS-IPP-Config
- Timestamp:
- May 8, 2025, 4:10:23 PM (15 months ago)
- Location:
- branches/eam_branches/ipp-20230313
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
PS-IPP-Config (modified) (1 prop)
-
PS-IPP-Config/lib/PS/IPP/Config.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20230313
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-ppmerge-20241229 (added) merged: 42770-42778,42803-42805 /trunk merged: 42763-42764,42766-42769,42779-42782,42784-42796,42798-42802,42806-42813
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20230313/PS-IPP-Config
- Property svn:mergeinfo changed
/branches/eam_branches/ipp-ppmerge-20241229/PS-IPP-Config (added) merged: 42803 /trunk/PS-IPP-Config (added) merged: 42802,42806
- Property svn:mergeinfo changed
-
branches/eam_branches/ipp-20230313/PS-IPP-Config/lib/PS/IPP/Config.pm
r42575 r42820 1371 1371 1372 1372 1373 # Return array of the instances for this nebulous file 1374 sub find_instances 1375 { 1376 my $self = shift; 1377 my $file = shift; 1378 1379 my $scheme = file_scheme($file); 1380 if (!$scheme or ($scheme ne 'neb')) { 1381 # if not nebulous, the instance is the file 1382 my @result; 1383 push @result, $file; 1384 return (\@result); 1385 } 1386 1387 my $neb = $self->nebulous; 1388 my $uris; 1389 eval { $uris = $neb->find_instances($file); }; 1390 if ($@) { 1391 carp "failed to set user.copies for $file"; 1392 return 0; 1393 } 1394 return $uris; 1395 } 1396 1373 1397 # Return catdir for tessellation, from TESSELLATIONS within the site configuration 1374 1398 sub tessellation_catdir
Note:
See TracChangeset
for help on using the changeset viewer.
