Show
Ignore:
Timestamp:
08/28/08 01:57:27 (5 years ago)
Author:
p_lindheimer
Message:

tweak publish script and add fw_arisvn.pl and fw_fopsvn.pl

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/branches/2.5/fw_fopsvn.pl

    r6493 r6498  
    22 
    33# This script (sculpted from publish.pl) will check the last tarball (which must be there) 
    4 # based on the framework xml version number and then run svn log against all updates since 
    5 # framework was last published. 
     4# based on the fw_fop xml version number and then run svn log against all updates since 
     5# fw_fop was last published. 
    66# 
    77$rver = "2.5"; 
    8 $framework = "framework"; 
     8$fw_fop = "fw_fop"; 
    99 
    10 $moddir = 'framework'; 
     10$moddir = 'fw_fop'; 
    1111 
    1212my $reldir = "release/"; 
     
    2525 
    2626  # Now we know the version. Get the svnversion.txt from the last update. 
    27   $filename = "../../$reldir"."$rver/$framework-$vers.tgz"; 
     27  $filename = "../../$reldir"."$rver/$fw_fop-$vers.tgz"; 
    2828  print "CHECKING VERSION: ..... "; 
    2929  #print "CHECKING VERSION WITH: tar -zxOf $filename $moddir/svnversion.txt: ...  "; 
    3030  system("tar -zxOf ".$filename." ".$moddir."/svnversion.txt"); 
    3131  print "Geting svn log since that version for $rver : .... \n\n"; 
    32   $svnver = system("svn log http://svn.freepbx.org/freepbx/branches/$rver -r `tar -zxOf ".$filename." ".$moddir."/svnversion.txt | sed -e s/SVN\\\ VERSION://`:HEAD"); 
     32  $svnver = system("svn log http://svn.freepbx.org/freepbx/branches/$rver/amp_conf/htdocs_panel -r `tar -zxOf ".$filename." ".$moddir."/svnversion.txt | sed -e s/SVN\\\ VERSION://`:HEAD"); 
    3333