[Ilugc] Guidelines for the FOSS Lab Manual Project

2011-03-06 Thread Vijay Kumar B .
A set of guidelines for the FOSS Lab Manual Project is available at
http://foss-lab-manual.googlecode.com/svn/trunk/guidelines.txt

People interested in contributing, please go through the guidelines.
Suggestions and feedbacks are welcome.

Regards,
Vijay

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Guidelines for the FOSS Lab Manual Project

2011-03-07 Thread Vignesh Nandha Kumar
On Mon, Mar 7, 2011 at 12:45 PM, Vijay Kumar B. wrote:

> A set of guidelines for the FOSS Lab Manual Project is available at
> http://foss-lab-manual.googlecode.com/svn/trunk/guidelines.txt
>

The last paragraph says:

> Please do not commit generated files to SVN. Only the AsciiDoc text file 
> should be committed the HTML file *should* not be committed to SVN.
>
> Is this just to minimize the size of the content at svn repo? Or there is
some other reason?

It's natural to compile the asciidoc file in the same folder and hence the
generated html file will be added while committing. If we are supposed to
move the generated html files each time before committing, it would be nice
to know the reason for it. (This may seem dumb, as I'm new to version
control systems; kindly point it out if it's so).


-- 
நன்றிகளுடன்,
விக்னேஷ்.
http://krvignesh.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Guidelines for the FOSS Lab Manual Project

2011-03-08 Thread Arun SAG
Vignesh,

2011/3/8 விக்னேஷ் நந்த குமார் (Vignesh Nandha Kumar) 

>
> >It's natural to compile the asciidoc file in the same folder and hence the
> >generated html file will be added while committing. If we are supposed to
> >move the generated html files each time before committing, it would be
> nice
> >to know the reason for it. (This may seem dumb, as I'm new to version
> >control systems; kindly point it out if it's so).
>

 In GIT there is a file you can add to your project named ".gitignore",
where you can add the list of file extensions that git should ignore. In SVN
there must be something similar to that. Please try to use such feature.
-- 
Arun S.A.G
http://zer0c00l.in/
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Guidelines for the FOSS Lab Manual Project

2011-03-08 Thread Kenneth Gonsalves
On Tue, 2011-03-08 at 15:27 +0530, Arun SAG wrote:
> > >to know the reason for it. (This may seem dumb, as I'm new to
> version
> > >control systems; kindly point it out if it's so).
> >
> 
>  In GIT there is a file you can add to your project named
> ".gitignore",
> where you can add the list of file extensions that git should ignore.
> In SVN
> there must be something similar to that. Please try to use such
> feature. 

.svnignore and .hgignore 
-- 
regards
KG
http://lawgon.livejournal.com
Coimbatore LUG rox
http://ilugcbe.techstud.org/

___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Guidelines for the FOSS Lab Manual Project

2011-03-08 Thread Vignesh Nandha Kumar
On Tue, Mar 8, 2011 at 3:33 PM, Kenneth Gonsalves wrote:

> On Tue, 2011-03-08 at 15:27 +0530, Arun SAG wrote:
> >  In GIT there is a file you can add to your project named
> > ".gitignore",
> > where you can add the list of file extensions that git should ignore.
> > In SVN
> > there must be something similar to that. Please try to use such
> > feature.
>
> .svnignore and .hgignore
>

I couldn't find any such file. However, I found that there is a property
called svn:ignore which can be set to the pattern of files and directories
to exclude while committing. After moving to the directory containing the
file to be excluded, I tried the following command

  svn propset svn:ignore . *.html

It says "svn: Cannot set 'svn:ignore' on a file ('php-manual.html')". How
should I fix this?


-- 
நன்றிகளுடன்,
விக்னேஷ்.
http://krvignesh.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Guidelines for the FOSS Lab Manual Project

2011-03-08 Thread Akilan R
2011/3/8 விக்னேஷ் நந்த குமார் (Vignesh Nandha Kumar) 

> I couldn't find any such file.


Create one yourself. :-)

-- 
அகிலன் (Akilan R)
[ blog.akilan.in ]
*I should have no use for a paradise in which I should be deprived of the
right to prefer hell.*
  --Jean Rostand
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc


Re: [Ilugc] Guidelines for the FOSS Lab Manual Project

2011-03-08 Thread Vignesh Nandha Kumar
2011/3/8 விக்னேஷ் நந்த குமார் (Vignesh Nandha Kumar) 

>
> On Tue, Mar 8, 2011 at 3:33 PM, Kenneth Gonsalves 
> wrote:
>
>> On Tue, 2011-03-08 at 15:27 +0530, Arun SAG wrote:
>> >  In GIT there is a file you can add to your project named
>> > ".gitignore",
>> > where you can add the list of file extensions that git should ignore.
>> > In SVN
>> > there must be something similar to that. Please try to use such
>> > feature.
>>
>> .svnignore and .hgignore
>>
>
> I couldn't find any such file. However, I found that there is a property
> called svn:ignore which can be set to the pattern of files and directories
> to exclude while committing. After moving to the directory containing the
> file to be excluded, I tried the following command
>
>   svn propset svn:ignore . *.html
>
> It says "svn: Cannot set 'svn:ignore' on a file ('php-manual.html')". How
> should I fix this?
>

Fixed it. I've just swapped the arguments. The command should be

  svn propset svn:ignore *.html .

I just couldn't understand the error message properly. Sorry for the silly
doubt!



-- 
நன்றிகளுடன்,
விக்னேஷ்.
http://krvignesh.wordpress.com
___
ILUGC Mailing List:
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc