You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by is...@cocoondev.org on 2004/07/06 03:45:33 UTC

[issues] New comment: (FOR-124) The SVN repository needs some configuration tweaks

The following comment has been added to this issue:

     Author: David Crossley
    Created: Tue, 6 Jul 2004 3:45 AM
       Body:
That is a partial workaround, but you still need to take care
when preparing to commit, that the line-endings are appropriate
for your OS and that the properties are set. Don't know about
other clients, but the command-line client tells you on doing
the 'svn commit' for newly added files, whether any properties
are set.

By the way i just wrote a Perl script to scan an SVN repository
and find all the text filename extensions. Added 11 and removed a duplicate for .xslt

Here is the current list, sorted alphabetically:

*.aart = svn:eol-style=native
*.ai = svn:eol-style=native
*.bat = svn:eol-style=native
*.cat = svn:eol-style=native
*.classpath = svn:eol-style=native
*.cmd = svn:eol-style=native
*.css = svn:eol-style=native
*.cwiki = svn:eol-style=native
*.data = svn:eol-style=native
*.dcl = svn:eol-style=native
*.dtd = svn:eol-style=native
*.egrm = svn:eol-style=native
*.ent = svn:eol-style=native
*.grm = svn:eol-style=native
*.g = svn:eol-style=native
*.html = svn:eol-style=native
*.ihtml = svn:eol-style=native
*.java = svn:eol-style=native
*.jsp = svn:eol-style=native
*.js = svn:eol-style=native
*.junit = svn:eol-style=native
*.key = svn:eol-style=native
*.mod = svn:eol-style=native
*.pdf = svn:eol-style=native
*.pen = svn:eol-style=native
*.pl = svn:eol-style=native
*.project = svn:eol-style=native
*.properties = svn:eol-style=native
*.py = svn:eol-style=native
*.rdf = svn:eol-style=native
*.rnc = svn:eol-style=native
*.rng = svn:eol-style=native
*.rnx = svn:eol-style=native
*.sh = svn:eol-style=native;svn:executable
*.svg = svn:eol-style=native
*.tld = svn:eol-style=native
*.txt = svn:eol-style=native
*.types = svn:eol-style=native
*.xcat = svn:eol-style=native
*.xconf = svn:eol-style=native
*.xegrm = svn:eol-style=native
*.xgrm = svn:eol-style=native
*.xlex = svn:eol-style=native
*.xmap = svn:eol-style=native
*.xml = svn:eol-style=native
*.xsl = svn:eol-style=native
*.xslt = svn:eol-style=native
*.xsp = svn:eol-style=native
*.xul = svn:eol-style=native



---------------------------------------------------------------------
View the issue:

  http://issues.cocoondev.org/jira//secure/ViewIssue.jspa?key=FOR-124


Here is an overview of the issue:
---------------------------------------------------------------------
        Key: FOR-124
    Summary: The SVN repository needs some configuration tweaks
       Type: Task

     Status: Unassigned
   Priority: Major

    Project: Forrest
  Component: Core operations

   Assignee: 
   Reporter: David Crossley

    Created: Tue, 23 Mar 2004 5:52 AM
    Updated: Wed, 28 Apr 2004 9:32 PM

Description:
Apache infrastructure@a.o has converted our repositories from CVS to SVN. Now we (Forrest) need to tweak its configuration.

For example, being an opensource project, we have developers using multiple operating systems so we need to attend to the "svn:eol-style" property. This has been commenced but there are some issues. See http://marc.theaimsgroup.com/?l=forrest-dev&m=108000337929621 and recent messages to infrastructure@a.o

We also need to convert our old ".cvsignore" files to use the "svn:ignore" property.


---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://issues.cocoondev.org/jira//Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


Re: [issues] New comment: (FOR-124) The SVN repository needs some configuration tweaks

Posted by Dave Brondsema <da...@brondsema.net>.
On Tue, 6 Jul 2004, Thorsten Scherler wrote:

> issues@cocoondev.org wrote:
>
> >By the way i just wrote a Perl script to scan an SVN repository
> >and find all the text filename extensions. Added 11 and removed a duplicate for .xslt
> >
> >Here is the current list, sorted alphabetically:
> >...
> >
> >
> If I am using this list I will be fine, or?
>
> "No matter what the OS, still needs to be configured
> or get into the habit of explicitly setting them
> whenever 'svn add' a new file." David
>
>
> ...if I set up my svn config with the above mentioned list I will be
> fine and do not have to explicitly set it before every add, right?
>

Right, you should be fine if you have svn configured like that.  But
double check the first few times you commit to make sure the properties
are set correctly.  And if you ever use an unusual extension, double
check.

-- 
Dave Brondsema : dave@brondsema.net
http://www.brondsema.net : personal
http://www.splike.com : programming
http://csx.calvin.edu : student org

Re: [issues] New comment: (FOR-124) The SVN repository needs some configuration tweaks

Posted by David Crossley <cr...@apache.org>.
Thorsten Scherler wrote:
> If I am using this list I will be fine, or?
> 
> "No matter what the OS, still needs to be configured
> or get into the habit of explicitly setting them
> whenever 'svn add' a new file." David
> 
> ...if I set up my svn config with the above mentioned list I will be 
> fine and do not have to explicitly set it before every add, right?

Don't know, maybe. There are always new filename extensions
being added, especially for xml config and properties files.

As i said, i think that the best defence is to get in the
habit of watching the svn client's pre-commit messages.

One thing that we do need to still be careful of, when we
accept patches from Jira or elsewhere, that we properly convert
the line-endings to our local operating system.

-- 
David Crossley


Re: [issues] New comment: (FOR-124) The SVN repository needs some configuration tweaks

Posted by Thorsten Scherler <th...@juntadeandalucia.es>.
issues@cocoondev.org wrote:

>By the way i just wrote a Perl script to scan an SVN repository
>and find all the text filename extensions. Added 11 and removed a duplicate for .xslt
>
>Here is the current list, sorted alphabetically:
>...
>  
>
If I am using this list I will be fine, or?

"No matter what the OS, still needs to be configured
or get into the habit of explicitly setting them
whenever 'svn add' a new file." David


...if I set up my svn config with the above mentioned list I will be 
fine and do not have to explicitly set it before every add, right?

King regards
thorsten

-- 
Thorsten Scherler

Departamento de Desarrollo de Proyectos
Sociedad Andaluza para el Desarrollo de la Sociedad de la InformaciĆ³n S.A.U.