Changeset 870
- Timestamp:
- 11/10/08 12:52:38 (3 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
Build.PL (modified) (1 diff)
-
lib/Padre.pm (modified) (1 diff)
-
lib/Padre/Wx.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Build.PL
r787 r870 36 36 # 'File::LocalizeNewlines' => '1.10', 37 37 'File::ShareDir' => '1.00', 38 'File::ShareDir::PAR' => '0.02',38 # 'File::ShareDir::PAR' => '0.02', 39 39 'File::Slurp' => 0, 40 40 'File::Which' => '0.05', -
trunk/lib/Padre.pm
r868 r870 363 363 oriented preference. It should probably apply to all files currently 364 364 open. 365 366 There are other aspects of preferences as well that might not exactly 367 overlap with the above set: 368 369 The developer might work on the same project on different machines. 370 In such case some of the personal preferences should apply only 371 only on one computer while others apply in both places. 372 373 In particular if Padre is installed in a Portable Perl it might 374 run on machines with different parameters. Screen size and resolution 375 might be different along other parameters. We would like to make sure 376 the relevant preferences are separated from those that are constant 377 even when moving betwen computers. 365 378 366 379 =head2 Editor or view oriented preferences -
trunk/lib/Padre/Wx.pm
r858 r870 8 8 use FindBin; 9 9 use File::Spec (); 10 use File::ShareDir ::PAR();10 use File::ShareDir (); 11 11 12 12 # Load every exportable constant into here, so that they come into … … 29 29 return File::Spec->catdir( $FindBin::Bin, File::Spec->updir, 'share' ) if $ENV{PADRE_DEV}; 30 30 return File::Spec->catdir( $ENV{PADRE_PAR_PATH}, 'inc', 'share' ) if $ENV{PADRE_PAR_PATH}; 31 return File::ShareDir:: PAR::dist_dir('Padre');31 return File::ShareDir::dist_dir('Padre'); 32 32 } 33 33
Note: See TracChangeset
for help on using the changeset viewer.
