Statistics of changes is easy. Go to the root o fSatchmo tree an run

hg diff -r v0.9.1 -r 0.9.2 --stat | grep /templates/ | less

You will see files and how many lines have been changed.
By "... | awk '{print $1}' | less" strip statistics

hg log -r v0.9.1:0.9.2 --stat $(find $(find satchmo/apps/ -name
templates) -type f) | less

You will see comments to changesets that modified templates. The
biggest of them is changeset "insert {% csrf_token %} for POST forms"
to 36 templates

hg diff -r v0.9.1 -r 0.9.2 $(find $(find satchmo/apps/ -name
templates) -type f) | less

You will see details like a big patch for upgrading only templates.

Note: See that the tag "0.9.2" does not start by "v" like "v0.9.1"
does.

I believe that this is for real developers more useful :-)

--Hynek

On 22 dub, 17:36, craig <[email protected]> wrote:
> Hello all,
>
> Is there a definitive list of templates that were modified between
> 0.91 and 0.92 releases? I'm thinking of upgrading one of my install
> but I'm not sure how much work is involved.
>
> Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"Satchmo users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/satchmo-users?hl=en.

Reply via email to