Haven't looked at it yet, but regarding cvs... I suppose it depends what
you like.  I use it command line (for xdoclet anyway - having problems
with emacs and pcl-cvs), so... the following is probably no use whatsover
if you dont like the command line interface, but here goes anyway...

"cvs --help-options" will give you a list of all the options, and 
"cvs --help-commands" will give you a list of all the commands.
"cvs -H cmd" will give you help on a command, where cmd is the command (eg
"diff").

so, to learn to do a diff - do cvs -H diff ... as such:

[dim@dim xdoclet]$ cvs -H diff
Usage: cvs diff [-lNR] [rcsdiff-options]
    [[-r rev1 | -D date1] [-r rev2 | -D date2]] [files...] 
        -l      Local directory only, not recursive
        -R      Process directories recursively.
        -D d1   Diff revision for date against working file.
        -D d2   Diff rev1/date1 against date2.
        -N      include diffs for added and removed files.
        -r rev1 Diff revision for rev1 against working file.
        -r rev2 Diff rev1/date1 against rev2.
        --ifdef=arg     Output diffs in ifdef format.
(consult the documentation for your diff program for rcsdiff-options.
The most popular is -c for context diffs but there are many more).
(Specify the --help global option for a list of other help options)
[dim@dim xdoclet]$ 

essentially, to get a patch for one file, do

cvs diff filename

and it will output to stdout... from there pipe it into a file, and
there's your patch file (o:  you then want the patch utility to apply the
patch file.

...

ok - now if you aren't using *nix command line, then the above probably
aint much help... but hey (o:

I'm going to go and look at your stuff now (o:

cheesr
dim

On Tue, 11 Sep 2001 [EMAIL PROTECTED] wrote:

> Here's the first cut of the wls6 support. It's about 75% complete and 
> not tested. Don't expect it to work. I'll post something more complete 
> in one or two days.
> 
> To avoid clashing with the old wls5 support, I put this under a new 
> package: xdoclet.ejb.vendor.weblogic6. The EjbDocletTask had to be 
> modified to add support for this new subtask. It's included too.
> 
> I would have posted a _real_ patch file, if I knew how to make one. Can 
> anybody give me some directions? I'm not a CVS pro.
> 
> The job is a little more complex than I thought, so don't expect me to 
> have this done and tested by thursday as I said earlier. I need a week 
> to cover all dark corners of the WLS DTDs and test it properly. If 1.0 
> release can wait until Wednesday next week, it would be great. 
> Otherwise, there will be no WLS6 support unless I get help.
> 
> Comments are appreciated!
> 
> Cheers,
> Aslak
> 


_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to