From: <ad...@tu...> - 2003-03-14 16:53:04
|
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. If you're working with an install created using the old build_phpws.sh, I would suggest rebuilding it using the new one updated today as it will make your life easier. Adam -- Adam Morton Developer - Electronic Student Services http://phpwebsite.appstate.edu Founder - Appalachian Linux Users Group http://alug.appstate.edu |
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/ |
From: Mike N. <mh...@us...> - 2003-03-14 19:27:33
|
On Fri, 2003-03-14 at 11:16, Mike Noyes wrote: > 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: Adam, Here is an extreme example of what is possible with CVSROOT/modules. modules -r 1.236 http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/CVSROOT/ -- Mike Noyes <mhnoyes @ users.sourceforge.net> http://sourceforge.net/users/mhnoyes/ http://leaf-project.org/ http://sitedocs.sf.net/ http://ffl.sf.net/ |
From: <ad...@tu...> - 2003-03-14 19:47:29
|
After reading up on cvshome.org I feel like I can get this working. I will take a crack at it now. Wish me luck and thanks for all the info again Mike :) Adam > On Fri, 2003-03-14 at 11:16, Mike Noyes wrote: >> 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: > > Adam, > Here is an extreme example of what is possible with CVSROOT/modules. > > modules -r 1.236 > http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/jboss/CVSROOT/ > > -- > Mike Noyes <mhnoyes @ users.sourceforge.net> > http://sourceforge.net/users/mhnoyes/ > http://leaf-project.org/ http://sitedocs.sf.net/ http://ffl.sf.net/ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > -- Adam Morton Developer - Electronic Student Services http://phpwebsite.appstate.edu Founder - Appalachian Linux Users Group http://alug.appstate.edu |