Changeset 5076

Show
Ignore:
Timestamp:
09/20/07 21:49:17 (6 years ago)
Author:
p_lindheimer
Message:

change svn path in build scripts

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/extensions.class.php

    r4993 r5076  
    491491} 
    492492 
     493class ext_resetcdr extends extension { 
     494  function output() { 
     495    return "ResetCDR(".$this->data.")"; 
     496  } 
     497} 
     498 
     499class ext_nocdr extends extension { 
     500  function output() { 
     501    return "NoCDR()"; 
     502  } 
     503} 
     504 
     505class ext_forkcdr extends extension { 
     506  function output() { 
     507    return "ForkCDR()"; 
     508  } 
     509} 
     510 
    493511class ext_waitexten extends extension { 
    494512  var $seconds; 
  • freepbx/trunk/buildtools/generate-release.sh

    r4993 r5076  
    77# TODO: SHOULD CHECK THE VERSION OF THE MODULES BEFORE PROCEEDING 
    88# 
    9 module_url="https://amportal.svn.sourceforge.net/svnroot/amportal/modules/branches/2.3" 
     9module_url="http://svn.freepbx.org/modules/branches/2.3" 
    1010core_url=${module_url}/core 
    1111framework_url=${module_url}/framework 
     
    6060cd .. 
    6161cur=`svn info | grep URL | awk ' { print $2 }'` 
    62 svn cp -m "Automatic tag of $ver" $cur https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/$ver 
     62svn cp -m "Automatic tag of $ver" $cur http://svn.freepbx.org/freepbx/tags/$ver 
    6363 
    6464# Now that the tag is made, we want to add core and framework to the tag so that 
    6565# the tag reflects the tarball. Then we will use the tag to generate the releases 
    6666# 
    67 svn cp -m "Automatic packaging of core with $ver"             $core_url             https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
    68 svn cp -m "Automatic packaging of framework with $ver"        $framework_url        https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
    69 svn cp -m "Automatic packaging of dashboard with $ver"        $dashboard_url        https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
    70 svn cp -m "Automatic packaging of voicemail with $ver"        $voicemail_url        https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
    71 svn cp -m "Automatic packaging of recordings with $ver"       $recordings_url       https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
    72 svn cp -m "Automatic packaging of music with $ver"            $music_url            https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
    73 svn cp -m "Automatic packaging of featurecodeadmin with $ver" $featurecodeadmin_url https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
    74 svn cp -m "Automatic packaging of infoservices with $ver"     $infoservices_url     https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
     67svn cp -m "Automatic packaging of core with $ver"             $core_url             http://svn.freepbx.org/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
     68svn cp -m "Automatic packaging of framework with $ver"        $framework_url        http://svn.freepbx.org/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
     69svn cp -m "Automatic packaging of dashboard with $ver"        $dashboard_url        http://svn.freepbx.org/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
     70svn cp -m "Automatic packaging of voicemail with $ver"        $voicemail_url        http://svn.freepbx.org/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
     71svn cp -m "Automatic packaging of recordings with $ver"       $recordings_url       http://svn.freepbx.org/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
     72svn cp -m "Automatic packaging of music with $ver"            $music_url            http://svn.freepbx.org/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
     73svn cp -m "Automatic packaging of featurecodeadmin with $ver" $featurecodeadmin_url http://svn.freepbx.org/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
     74svn cp -m "Automatic packaging of infoservices with $ver"     $infoservices_url     http://svn.freepbx.org/freepbx/tags/${ver}/amp_conf/htdocs/admin/modules/ 
    7575 
    7676# Now clear out the release diretory where we will build the tarballs and grab it from the tag to get core and framework 
     
    8181# Use the tag to build the tarball 
    8282# 
    83 svn export https://amportal.svn.sourceforge.net/svnroot/amportal/freepbx/tags/$ver /usr/src/freepbx-release/freepbx-$ver 
     83svn export http://svn.freepbx.org/freepbx/tags/$ver /usr/src/freepbx-release/freepbx-$ver 
    8484 
    8585cd /usr/src/freepbx-release