[ Index ]

PHP Cross Reference of moodle-2.8

title

Body

[close]

/lib/horde/ -> readme_moodle.txt (source)

   1  Description of import of Horde libraries
   2  
   3  # Download the Horde git repository. You will probably want to keep this
   4    around for future updates:
   5      git clone [email protected]:horde/horde.git
   6  # Checkout the version of horde you require:
   7      git checkout horde-5.2.1
   8  # Copy the following script, change it's execute bit, and run it, passing
   9    in your path to Horde:
  10      /tmp/copyhorde.sh ~/git/ext/horde/framework
  11  
  12  ====
  13  #!/bin/sh
  14  
  15  source=$1/framework
  16  target=./lib/horde
  17  
  18  echo "Copy Horde modules from $source to $target"
  19  
  20  modules="Crypt_Blowfish Exception Imap_Client Mail Mime Secret Socket_Client Stream Stream_Filter Stream_Wrapper Support Text_Flowed Translation Util"
  21  
  22  rm -rf $target/locale $target/framework
  23  mkdir -p $target/locale $target/framework/Horde
  24  
  25  for module in $modules
  26  do
  27    echo "Copying $module"
  28    cp -Rf $source/$module/lib/Horde/* $target/framework/Horde
  29    locale=$source/$module/locale
  30    if [ -d $locale ]
  31    then
  32      cp -Rf $locale/* $target/locale
  33    fi
  34  done


Generated: Fri Nov 28 20:29:05 2014 Cross-referenced by PHPXref 0.7.1