Update of /cvsroot/openinteract/OpenInteract2
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26425
Modified Files:
build_bricks
Log Message:
OIN-166: add 'generated by' comment header to all generated brick files
Index: build_bricks
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/build_bricks,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** build_bricks 4 Mar 2005 20:26:48 -0000 1.9
--- build_bricks 22 Oct 2005 22:10:35 -0000 1.10
***************
*** 89,92 ****
--- 89,95 ----
my @brick_params = ();
+ my $invocation = join( ' ', $0, @ARGV );
+ my $date = scalar( localtime );
+
while ( my ( $brick_dir, $brick_info ) = each %SPECS ) {
my @brick_files = read_brick_files( $brick_dir );
***************
*** 103,106 ****
--- 106,112 ----
brick_example => $brick_info->[3],
brick_description => $full_description,
+ invocation => $invocation,
+ date => $date,
+ oi2_version => $OI2_VERSION,
all_files => \@brick_files,
);
***************
*** 115,118 ****
--- 121,127 ----
brick_summary => "Base-64 encoded OI2 package '%s' shipped with distribution",
brick_example => 'oi2_manage create_website --website_dir=/path/to/site',
+ invocation => $invocation,
+ date => $date,
+ oi2_version => $OI2_VERSION,
);
|