diff --git a/doc/cvs_full_checkout.php b/doc/cvs_full_checkout.php new file mode 100755 index 0000000000..108c5d3815 --- /dev/null +++ b/doc/cvs_full_checkout.php @@ -0,0 +1,115 @@ +#!/usr/bin/php + * + * Joseph Engo * + * -------------------------------------------- * + * This program is free software; you can redistribute it and/or modify it * + * under the terms of the GNU General Public License as published by the * + * Free Software Foundation; either version 2 of the License, or (at your * + * option) any later version. * + \**************************************************************************/ + + /* $Id$ */ + + /****************************************************************************\ + * Config section * + \****************************************************************************/ + // Temp paths that can be read and written to + $tmp_dir = '/tmp'; + // Path of where you want the egroupware directory to go. NO trailing / + $co_dir = '/var/www/html'; + // If you do not have developer access to cvs, change to True + $cvs_anonymous = True; + // Only needed if you have developers cvs access + $cvs_login = ''; + + + // Modules you want to checkout, do NOT add the egroupware module + $co_modules[] = 'addressbook'; + $co_modules[] = 'admin'; + $co_modules[] = 'backup'; + $co_modules[] = 'bookmarks'; + $co_modules[] = 'calendar'; + $co_modules[] = 'comic'; + $co_modules[] = 'developer_tools'; + $co_modules[] = 'email'; + $co_modules[] = 'filemanager'; + $co_modules[] = 'forum'; + $co_modules[] = 'ftp'; + $co_modules[] = 'headlines'; + $co_modules[] = 'infolog'; + $co_modules[] = 'manual'; + $co_modules[] = 'messenger'; + $co_modules[] = 'news_admin'; + $co_modules[] = 'phpgwapi'; + $co_modules[] = 'phpsysinfo'; + $co_modules[] = 'polls'; + $co_modules[] = 'preferences'; + $co_modules[] = 'projects'; + $co_modules[] = 'setup'; + $co_modules[] = 'skel'; + $co_modules[] = 'soap'; + $co_modules[] = 'stocks'; + $co_modules[] = 'tts'; + $co_modules[] = 'xmlrpc'; + + // -- End config section + + function docvscommand($command, $anonymous_login = False) + { + global $tmp_dir, $cvs_anonymous; + + $fp = fopen($tmp_dir . '/createrelease.exp','w'); + $contents = "#!/usr/bin/expect -f\n"; + $contents .= "send -- \"export CVS_RSH=ssh\"\n"; + $contents .= "set force_conservative 0\n"; + $contents .= "if {\$force_conservative} {\n"; + $contents .= " set send_slow {1 .1}\n"; + $contents .= " proc send {ignore arg} {\n"; + $contents .= " sleep .1\n"; + $contents .= " exp_send -s -- \$arg\n"; + $contents .= " }\n"; + $contents .= "}\n"; + $contents .= "set timeout -1\n"; + $contents .= "spawn $command\n"; + $contents .= "match_max 100000\n"; + + if ($cvs_anonymous && $anonymous_login) + { + $contents .= "expect \"CVS password:\"\n"; + $contents .= "send -- \"\\r\"\n"; + } + + $contents .= "expect eof\n"; + fputs($fp, $contents, strlen($contents)); + fclose($fp); + system('/usr/bin/expect ' . $tmp_dir . '/createrelease.exp'); + unlink($tmp_dir . '/createrelease.exp'); + } + + chdir($co_dir); + if ($cvs_anonymous) + { + docvscommand('cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/egroupware login',True); + docvscommand('cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/egroupware co egroupware',True); + } + else + { + docvscommand('cvs -d' . $cvs_login . '@cvs.sourceforge.net:/cvsroot/egroupware co egroupware'); + } + + chdir($co_dir . '/egroupware'); + + if ($cvs_anonymous) + { + docvscommand('cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/egroupware co ' . implode(' ',$co_modules)); + } + else + { + docvscommand('cvs -d' . $cvs_login . '@cvs.sourceforge.net:/cvsroot/egroupware co ' . implode(' ',$co_modules)); + } + + docvscommand('cvs update -dP'); diff --git a/doc/inlinedocparser_html.tpl b/doc/inlinedocparser_html.tpl new file mode 100644 index 0000000000..d733b477de --- /dev/null +++ b/doc/inlinedocparser_html.tpl @@ -0,0 +1,69 @@ + +   + + + + + + + + + + + Local setup - Login + + + + + + +

{group_name}

+ {group_contents} +

+ + + +

{object_name}

+ {object_contents} + + + + Abstract: {abstract}
+ + + + {generic_name}: {generic_value}
+ + + +

{generic_name}: {generic_value}

+ + + + {generic_name}: +
+		{generic_value}
+		
+ + + + + + + + + {param_entry} +
NameDetails
+ + + + + {name} + {details} + + + + + + +