MDL-63495 comment: Added provider::get_users_in_context_from_sql
[moodle.git] / lib / horde / readme_moodle.txt
blob2987291c9d054c8727741fcd442a78d2b193c444
1 Description of import of Horde libraries
3 # Download the Horde git repository. You will probably want to keep this
4   around for future updates:
5     git clone git@github.com:horde/horde.git
6 # Checkout the version of horde you require:
7     git checkout tags/horde_core-2.30.2 -b last
8 # Copy the following script and store it on /tmp, change it's execute bit, and run it, passing
9   in your path to Horde (the directory you've cloned the repository):
10     /tmp/copyhorde.sh ~/git/ext/horde/
12 ====
13 #!/bin/sh
15 source=$1/framework
16 target=./lib/horde
18 echo "Copy Horde modules from $source to $target"
20 modules="Crypt_Blowfish Exception Idna Imap_Client Mail Mime Secret Socket_Client Stream Stream_Filter Stream_Wrapper Support Text_Flowed Translation Util"
22 rm -rf $target/locale $target/framework
23 mkdir -p $target/locale $target/framework/Horde
25 for module in $modules
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