You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ode.apache.org by "Alexis Midon (JIRA)" <ji...@apache.org> on 2009/02/17 22:58:59 UTC

[jira] Commented: (ODE-520) Replace CRLF with LF, TAB with 4 spaces

    [ https://issues.apache.org/jira/browse/ODE-520?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12674369#action_12674369 ] 

Alexis Midon commented on ODE-520:
----------------------------------

execute the following script on the 1.X and trunk branches

FILENAME=$1

if  file -b $1 | grep -Ei '(text)|(xml)|(ascii)'  > /dev/null 2>&1
then
  dos2unix $FILENAME
  mv $FILENAME $FILENAME.tmp
  expand -t4 $FILENAME.tmp >$FILENAME
  rm $FILENAME.tmp
fi

> Replace CRLF with LF, TAB with 4 spaces
> ---------------------------------------
>
>                 Key: ODE-520
>                 URL: https://issues.apache.org/jira/browse/ODE-520
>             Project: ODE
>          Issue Type: Task
>            Reporter: Alexis Midon
>            Assignee: Alexis Midon
>


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.