Changeset 1156 in ProjectBuilder for devel/pb/lib
- Timestamp:
- Jan 13, 2011, 1:18:37 PM (14 years ago)
- Location:
- devel/pb/lib/ProjectBuilder
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
devel/pb/lib/ProjectBuilder/CMS.pm
r1153 r1156 25 25 # Inherit from the "Exporter" module which handles exporting functions. 26 26 27 use vars qw($VERSION @ISA @EXPORT);27 use vars qw($VERSION $REVISION @ISA @EXPORT); 28 28 use Exporter; 29 29 … … 33 33 our @ISA = qw(Exporter); 34 34 our @EXPORT = qw(pb_cms_init pb_cms_export pb_cms_get_uri pb_cms_copy pb_cms_checkout pb_cms_up pb_cms_checkin pb_cms_isdiff pb_cms_get_pkg pb_cms_get_real_pkg pb_cms_compliant pb_cms_log pb_cms_add); 35 $VERSION = "$ProjectBuilder::Version::VERSION";35 ($VERSION,$REVISION) = pb_version_init(); 36 36 37 37 =pod -
devel/pb/lib/ProjectBuilder/Changelog.pm
r1148 r1156 23 23 # Inherit from the "Exporter" module which handles exporting functions. 24 24 25 use vars qw($VERSION @ISA @EXPORT);25 use vars qw($VERSION $REVISION @ISA @EXPORT); 26 26 use Exporter; 27 27 … … 31 31 our @ISA = qw(Exporter); 32 32 our @EXPORT = qw(pb_changelog); 33 $VERSION = "$ProjectBuilder::Version::VERSION";33 ($VERSION,$REVISION) = pb_version_init(); 34 34 35 35 =pod -
devel/pb/lib/ProjectBuilder/Env.pm
r1148 r1156 26 26 # Inherit from the "Exporter" module which handles exporting functions. 27 27 28 use vars qw($VERSION @ISA @EXPORT);28 use vars qw($VERSION $REVISION @ISA @EXPORT); 29 29 use Exporter; 30 30 … … 34 34 our @ISA = qw(Exporter); 35 35 our @EXPORT = qw(pb_env_init pb_env_init_pbrc); 36 $VERSION = "$ProjectBuilder::Version::VERSION";36 ($VERSION,$REVISION) = pb_version_init(); 37 37 38 38 =pod -
devel/pb/lib/ProjectBuilder/Filter.pm
r1148 r1156 24 24 # Inherit from the "Exporter" module which handles exporting functions. 25 25 26 use vars qw($VERSION @ISA @EXPORT);26 use vars qw($VERSION $REVISION @ISA @EXPORT); 27 27 use Exporter; 28 28 … … 32 32 our @ISA = qw(Exporter); 33 33 our @EXPORT = qw(pb_get_filters pb_filter_file_pb pb_filter_file_inplace pb_filter_file); 34 $VERSION = "$ProjectBuilder::Version::VERSION";34 ($VERSION,$REVISION) = pb_version_init(); 35 35 36 36 =pod
Note:
See TracChangeset
for help on using the changeset viewer.