You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Torsten Curdt (JIRA)" <ji...@apache.org> on 2008/07/10 12:04:31 UTC

[jira] Created: (SANDBOX-247) Redesign of Commons Compress

Redesign of Commons Compress
----------------------------

                 Key: SANDBOX-247
                 URL: https://issues.apache.org/jira/browse/SANDBOX-247
             Project: Commons Sandbox
          Issue Type: Improvement
          Components: Compress
            Reporter: Torsten Curdt
            Assignee: Torsten Curdt


Redesign of commons compress contributed by Christian Grobmeier and Torsten Curdt.
Both CLAs on file. Git log and patchset generated from the git log attached.

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


[jira] Issue Comment Edited: (SANDBOX-247) Redesign of Commons Compress

Posted by "Torsten Curdt (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SANDBOX-247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12612425#action_12612425 ] 

tcurdt edited comment on SANDBOX-247 at 7/10/08 8:00 AM:
----------------------------------------------------------------

Patchset generated with:

{code}
#/bin/sh

DEST=$1

PREV=""
( git log --reverse --pretty=format:"%ae %at %H" ; echo ) |
while read line
do
    AUTHOR=`echo "$line" | awk '{print $1}'`
    TIMESTAMP=`echo "$line" | awk '{print $2}'`
    HASH=`echo "$line" | awk '{print $3}'`
    
	mkdir -p $DEST/$AUTHOR
	git diff $PREV $HASH > $DEST/$AUTHOR/patch-$TIMESTAMP-$HASH.diff
	PREV=$HASH
done
{code}

      was (Author: tcurdt):
    Patchset generated with:

{code}
#/bin/sh

DEST=$1

git log --pretty=format:"%ae %at %H" |
while read line
do
    AUTHOR=`echo "$line" | awk '{print $1}'`
    TIMESTAMP=`echo "$line" | awk '{print $2}'`
    HASH=`echo "$line" | awk '{print $3}'`
    
	mkdir -p $DEST/$AUTHOR
	git diff $HASH > $DEST/$AUTHOR/patch-$TIMESTAMP.diff
done
{code}
  
> Redesign of Commons Compress
> ----------------------------
>
>                 Key: SANDBOX-247
>                 URL: https://issues.apache.org/jira/browse/SANDBOX-247
>             Project: Commons Sandbox
>          Issue Type: Improvement
>          Components: Compress
>            Reporter: Torsten Curdt
>            Assignee: Torsten Curdt
>         Attachments: patches.zip
>
>
> Redesign of commons compress contributed by Christian Grobmeier and Torsten Curdt.
> Both CLAs on file. Git log and patchset generated from the git log attached.

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


[jira] Moved: (COMPRESS-40) Redesign of Commons Compress

Posted by "Dennis Lundberg (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/COMPRESS-40?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dennis Lundberg moved SANDBOX-247 to COMPRESS-40:
-------------------------------------------------

    Component/s:     (was: Compress)
            Key: COMPRESS-40  (was: SANDBOX-247)
        Project: Commons Compress  (was: Commons Sandbox)

> Redesign of Commons Compress
> ----------------------------
>
>                 Key: COMPRESS-40
>                 URL: https://issues.apache.org/jira/browse/COMPRESS-40
>             Project: Commons Compress
>          Issue Type: Improvement
>            Reporter: Torsten Curdt
>            Assignee: Torsten Curdt
>         Attachments: patches.zip
>
>
> Redesign of commons compress contributed by Christian Grobmeier and Torsten Curdt.
> Both CLAs on file. Git log and patchset generated from the git log attached.

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


[jira] Updated: (SANDBOX-247) Redesign of Commons Compress

Posted by "Torsten Curdt (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SANDBOX-247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Torsten Curdt updated SANDBOX-247:
----------------------------------

    Attachment: patches.zip

> Redesign of Commons Compress
> ----------------------------
>
>                 Key: SANDBOX-247
>                 URL: https://issues.apache.org/jira/browse/SANDBOX-247
>             Project: Commons Sandbox
>          Issue Type: Improvement
>          Components: Compress
>            Reporter: Torsten Curdt
>            Assignee: Torsten Curdt
>         Attachments: patches.zip
>
>
> Redesign of commons compress contributed by Christian Grobmeier and Torsten Curdt.
> Both CLAs on file. Git log and patchset generated from the git log attached.

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


[jira] Updated: (SANDBOX-247) Redesign of Commons Compress

Posted by "Torsten Curdt (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SANDBOX-247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Torsten Curdt updated SANDBOX-247:
----------------------------------

    Attachment:     (was: patches.zip)

> Redesign of Commons Compress
> ----------------------------
>
>                 Key: SANDBOX-247
>                 URL: https://issues.apache.org/jira/browse/SANDBOX-247
>             Project: Commons Sandbox
>          Issue Type: Improvement
>          Components: Compress
>            Reporter: Torsten Curdt
>            Assignee: Torsten Curdt
>
> Redesign of commons compress contributed by Christian Grobmeier and Torsten Curdt.
> Both CLAs on file. Git log and patchset generated from the git log attached.

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


[jira] Commented: (SANDBOX-247) Redesign of Commons Compress

Posted by "Torsten Curdt (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SANDBOX-247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12612425#action_12612425 ] 

Torsten Curdt commented on SANDBOX-247:
---------------------------------------

Patchset generated with:

{code}
#/bin/sh

DEST=$1

git log --pretty=format:"%ae %at %H" |
while read line
do
    AUTHOR=`echo "$line" | awk '{print $1}'`
    TIMESTAMP=`echo "$line" | awk '{print $2}'`
    HASH=`echo "$line" | awk '{print $3}'`
    
	mkdir -p $DEST/$AUTHOR
	git diff $HASH > $DEST/$AUTHOR/patch-$TIMESTAMP.diff
done
{code}

> Redesign of Commons Compress
> ----------------------------
>
>                 Key: SANDBOX-247
>                 URL: https://issues.apache.org/jira/browse/SANDBOX-247
>             Project: Commons Sandbox
>          Issue Type: Improvement
>          Components: Compress
>            Reporter: Torsten Curdt
>            Assignee: Torsten Curdt
>         Attachments: patches.zip
>
>
> Redesign of commons compress contributed by Christian Grobmeier and Torsten Curdt.
> Both CLAs on file. Git log and patchset generated from the git log attached.

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


[jira] Updated: (SANDBOX-247) Redesign of Commons Compress

Posted by "Torsten Curdt (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SANDBOX-247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Torsten Curdt updated SANDBOX-247:
----------------------------------

    Attachment: patches.zip

> Redesign of Commons Compress
> ----------------------------
>
>                 Key: SANDBOX-247
>                 URL: https://issues.apache.org/jira/browse/SANDBOX-247
>             Project: Commons Sandbox
>          Issue Type: Improvement
>          Components: Compress
>            Reporter: Torsten Curdt
>            Assignee: Torsten Curdt
>         Attachments: patches.zip
>
>
> Redesign of commons compress contributed by Christian Grobmeier and Torsten Curdt.
> Both CLAs on file. Git log and patchset generated from the git log attached.

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


[jira] Closed: (SANDBOX-247) Redesign of Commons Compress

Posted by "Torsten Curdt (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SANDBOX-247?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Torsten Curdt closed SANDBOX-247.
---------------------------------

    Resolution: Fixed

applied

> Redesign of Commons Compress
> ----------------------------
>
>                 Key: SANDBOX-247
>                 URL: https://issues.apache.org/jira/browse/SANDBOX-247
>             Project: Commons Sandbox
>          Issue Type: Improvement
>          Components: Compress
>            Reporter: Torsten Curdt
>            Assignee: Torsten Curdt
>         Attachments: patches.zip
>
>
> Redesign of commons compress contributed by Christian Grobmeier and Torsten Curdt.
> Both CLAs on file. Git log and patchset generated from the git log attached.

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