From: Mike N. <mh...@us...> - 2003-03-14 19:16:10
|
On Fri, 2003-03-14 at 08:56, ad...@tu... wrote: > > I commited some changes to build_phpws.sh in the shellscripts repository. > Basically I was getting irritated at having to do a 'cvs update' in the > base dir then the mod dir then the themes dir. Now after you build your > development environment using the script you can use update, commit, and > edit from the base dir and it will get all the modules and themes as well. Adam, Instead of using a script you may want to consider defining modules in CVSROOT. After modifying the modules file a checkout would look like: $ cvs co core m_announce m_pagemaster t_Cool t_clean C.1 The modules file http://www.cvshome.org/docs/manual/cvs_18.html#SEC157 Example **NOT TESTED** CVSROOT/modules: c_approval -d phpwebsite/mod/approval approval c_branch -d phpwebsite/mod/branch branch c_debug -d phpwebsite/mod/debug debug c_boost -d phpwebsite/mod/boost boost c_help -d phpwebsite/mod/help help c_language -d phpwebsite/mod/language language c_layout -d phpwebsite/mod/layout layout c_modmaker -d phpwebsite/mod/modmaker modmaker c_search -d phpwebsite/mod/search search c_security -d phpwebsite/mod/security security c_users -d phpwebsite/mod/users users core &phpwebsite \ &c_approval \ &c_branch \ &c_debug \ &c_boost \ &c_help \ &c_language \ &c_layout \ &c_modmaker \ &c_search \ &c_security \ &c_users m_announce -d phpwebsite/mod/announce announce m_blockmaker -d phpwebsite/mod/blockmaker blockmaker m_calendar -d phpwebsite/mod/calendar calendar m_comments -d phpwebsite/mod/comments comments m_fatcat -d phpwebsite/mod/fatcat fatcat m_linkman -d phpwebsite/mod/linkman linkman m_menuman -d phpwebsite/mod/menuman menuman m_notes -d phpwebsite/mod/notes notes m_pagemaster -d phpwebsite/mod/pagemaster pagemaster m_phatform -d phpwebsite/mod/phatform phatform m_textpad -d phpwebsite/mod/textpad textpad t_AHP -d phpwebsite/themes/AHP AHP t_Cool -d phpwebsite/themes/Cool Cool t_Default -d phpwebsite/themes/Default t_Quick -d phpwebsite/themes/Quick Quick t_Smooth -d phpwebsite/themes/Smooth Smooth t_clean -d phpwebsite/themes/clean clean t_cowboy -d phpwebsite/themes/cowboy cowboy t_mainsite -d phpwebsite/themes/mainsite mainsite t_muggles -d phpwebsite/themes/muggles muggles t_shiny -d phpwebsite/themes/shiny shiny t_winxp -d phpwebsite/themes/winxp winxp -- Mike Noyes <mhnoyes @ users.sourceforge.net> http://sourceforge.net/users/mhnoyes/ http://leaf-project.org/ http://sitedocs.sf.net/ http://ffl.sf.net/ |