Quantcast

Zend Framework 2 development status tool

classic Classic list List threaded Threaded
17 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Zend Framework 2 development status tool

EvanDotPro
Hi all,

I decided it would be best to break the discussion regarding this tool
into a separate thread. For the discussion that led to the development
of this tool, see the "A Rant From Mr. Grumpy on ZF2" thread.

Per the earlier discussion, I have put this project up on GitHub:
https://github.com/EvanDotPro/zf-status

I have a live copy up at:
http://zf2.evan.pro/

There are currently a few issues I'm aware of:
- Branches are mapped 1:1 to components. I built this tool very
quickly without much thought, not knowing how useful the finished
thing would be. Now that it's beginning to show some real value, I
plan to refactor it to more accurately map branches and commits to the
appropriate ZF2 components as m:m.
- The GitHub API restricts requests to 60 per second. I'm using
Zend_Cache to address this; but currently it performs a bit over 60
requests to generate the page. If you're trying the current code out,
and you run into that issue, simply refresh after a minute, and it
will continue building the cache where it left off. Here are my
thoughts:
    - Unfortunately, loading per-component data on-demand via ajax
won't help much. Due to the way it's aggregating the data from many
forks and branches, and how the GitHub API works, it's not much less
expensive gathering the data for a single component than it is
gathering the data for all of them, so we may as well just load it all
up front.
    - Certain requests such as those for user data could be cached for
much longer periods of time.
    - I'm going to make a simple CLI switch for rebuilding the cache,
which will throttle the requests to GitHub as to not hit the 60
req/min limit. It will then be trivial to cron it to update at any
interval desired.

Per Nick Belhomme's suggestion (Re: "Status page created"), I am
contemplating the idea of parsing the mailing list for component
names, and having it organize the relevant threads under each
component. I think this would be a simple, yet incredibly useful for
helping developers who don't stay completely up to date with the
mailing lists be able to follow discussions on a per-component basis
with much less effort. While it's true that modern e-mail/webmail
clients (not to mention Nabble) have extensive search capabilities, I
think doing this sort of basic filtering and providing it up front on
a page that developers are likely to stumble across could go a long
way towards helping diminish the "closed door" feeling people have
been expressing. I realize everyone may not agree on the usefulness,
but I think it's safe to say it definitely wouldn't hurt.

Finally, I've resisted the urge to hook this into any sort of database
backend (MySQL, MongoDB, etc) for the sake of not over-engineering a
simple tool. However, having a relational database of users, commits,
branches, components, and their respective relationships would really
open up some awesome possibilities. I'm not saying it's a good idea
and I really think doing something like that would snowball this
small, simple project into something much larger and more complicated
than it needs to be. I'll just say that I'm at least modestly open to
the concept should a cool enough idea come up to warrant the
complexity.

So anyway, enjoy, feel free to fork it and play around; or just give
your thoughts or ideas here and I'll do my best to implement them as
time permits. I'll try to stay on top of all pull requests, etc.

Hopefully the community finds this little tool useful in following the
progress of ZF2!

--
Evan Coury

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

Adam Lundrigan
Evan,

Thanks for sharing your code.  I had been planning to do much the same type
of tool, but didn't find enough time to hack away at it, so i'll throw my
ideas out there in case you want to implement them.  If I have a spare few
hours this weekend I'll have a go at playing around with your code and maybe
implementing some of these things.

My plan involved pulling metadata for all the zf2 forks on GitHub down into
a MongoDB-backed cache and refreshing it periodically via cron, with the
refresh functionality implemented as Zend_Tool commands.  It would parse
commit messages and file names in each commit to identify the component(s)
being worked on in that fork+branch, then compare the fork+branch back to
zf2/master to determine the extent of work done there (ie: commits
ahead/behind).  On the UI side would be a list of components, and under each
component it would list all the branches actively modifying that component
along with some basic information (last commit, author, date/time,
committers involved, etc) and the ahead/behind commit counts.

This kind of tool could also be useful for other projects which use GitHub
for collaboration, as the problem it solves is not unique to ZF2, so in the
code I have written (just a basic repository metadata fetch and cache at
this point) I tried to generalize the design so it will work with projects
other than ZF2.

--
Adam Lundrigan, B.Sc, ZCE
[hidden email]


On Wed, Aug 10, 2011 at 11:48 PM, Evan Coury <[hidden email]> wrote:

> Hi all,
>
> I decided it would be best to break the discussion regarding this tool
> into a separate thread. For the discussion that led to the development
> of this tool, see the "A Rant From Mr. Grumpy on ZF2" thread.
>
> Per the earlier discussion, I have put this project up on GitHub:
> https://github.com/EvanDotPro/zf-status
>
> I have a live copy up at:
> http://zf2.evan.pro/
>
> There are currently a few issues I'm aware of:
> - Branches are mapped 1:1 to components. I built this tool very
> quickly without much thought, not knowing how useful the finished
> thing would be. Now that it's beginning to show some real value, I
> plan to refactor it to more accurately map branches and commits to the
> appropriate ZF2 components as m:m.
> - The GitHub API restricts requests to 60 per second. I'm using
> Zend_Cache to address this; but currently it performs a bit over 60
> requests to generate the page. If you're trying the current code out,
> and you run into that issue, simply refresh after a minute, and it
> will continue building the cache where it left off. Here are my
> thoughts:
>    - Unfortunately, loading per-component data on-demand via ajax
> won't help much. Due to the way it's aggregating the data from many
> forks and branches, and how the GitHub API works, it's not much less
> expensive gathering the data for a single component than it is
> gathering the data for all of them, so we may as well just load it all
> up front.
>    - Certain requests such as those for user data could be cached for
> much longer periods of time.
>    - I'm going to make a simple CLI switch for rebuilding the cache,
> which will throttle the requests to GitHub as to not hit the 60
> req/min limit. It will then be trivial to cron it to update at any
> interval desired.
>
> Per Nick Belhomme's suggestion (Re: "Status page created"), I am
> contemplating the idea of parsing the mailing list for component
> names, and having it organize the relevant threads under each
> component. I think this would be a simple, yet incredibly useful for
> helping developers who don't stay completely up to date with the
> mailing lists be able to follow discussions on a per-component basis
> with much less effort. While it's true that modern e-mail/webmail
> clients (not to mention Nabble) have extensive search capabilities, I
> think doing this sort of basic filtering and providing it up front on
> a page that developers are likely to stumble across could go a long
> way towards helping diminish the "closed door" feeling people have
> been expressing. I realize everyone may not agree on the usefulness,
> but I think it's safe to say it definitely wouldn't hurt.
>
> Finally, I've resisted the urge to hook this into any sort of database
> backend (MySQL, MongoDB, etc) for the sake of not over-engineering a
> simple tool. However, having a relational database of users, commits,
> branches, components, and their respective relationships would really
> open up some awesome possibilities. I'm not saying it's a good idea
> and I really think doing something like that would snowball this
> small, simple project into something much larger and more complicated
> than it needs to be. I'll just say that I'm at least modestly open to
> the concept should a cool enough idea come up to warrant the
> complexity.
>
> So anyway, enjoy, feel free to fork it and play around; or just give
> your thoughts or ideas here and I'll do my best to implement them as
> time permits. I'll try to stay on top of all pull requests, etc.
>
> Hopefully the community finds this little tool useful in following the
> progress of ZF2!
>
> --
> Evan Coury
>
> --
> List: [hidden email]
> Info: http://framework.zend.com/archives
> Unsubscribe: [hidden email]
>
>
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

EvanDotPro
> My plan involved pulling metadata for all the zf2 forks on GitHub down into
> a MongoDB-backed cache and refreshing it periodically via cron, with the
> refresh functionality implemented as Zend_Tool commands.  It would parse
> commit messages and file names in each commit to identify the component(s)
> being worked on in that fork+branch, then compare the fork+branch back to
> zf2/master to determine the extent of work done there (ie: commits
> ahead/behind).

Yep; and technically we could really use Git itself for much of this;
having the tool fetch each fork/branch, then using git itself to track
the changes versus relying solely on the GitHub API. I'm not really
sure how much metadata the GitHub API gives that we couldn't get
directly from Git itself. Git is good about giving easy-to-parse
output for many commands (for example `git status -s`). Also using
Zend_Tool commands for the CLI/cron refresh functionality is a great
idea.

> On the UI side would be a list of components, and under each
> component it would list all the branches actively modifying that component
> along with some basic information (last commit, author, date/time,
> committers involved, etc) and the ahead/behind commit counts.

I believe the only thing missing currently is the ahead/behind commit counts.

> This kind of tool could also be useful for other projects which use GitHub
> for collaboration, as the problem it solves is not unique to ZF2, so in the
> code I have written (just a basic repository metadata fetch and cache at
> this point) I tried to generalize the design so it will work with projects
> other than ZF2.

I'm definitely open to generalizing this a bit more; to where the
"components" and "monitored forks" can be configured per project. I
agree there are many projects that could benefit from something like
this.

--
Evan Coury

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

EvanDotPro
I've put up a branch of this tool (feature/git-direct) with the
following changes:

- No longer using the GitHub API for everything. It relies on having a
local clone of the zf2 repository, and remotes added for any forks you
want the tool to follow. It no longer requires that a project be on
GitHub for the tool to be useful. Unfortunately, in the repository
itself, there is no mapping to GitHub usernames. I came up with a bit
of a hack involving just a couple of calls to the GitHub API and
Gravatars as a fallback to address this (it's expensive but the info
is pretty stale information so it can be cached heavily).
- Caching is done with a bit of random variation so that the entire
cache doesn't expire at once causing one insanely slow request.
- Filtering of which branches show under which components still needs
a little help, but I have an idea for that.
- UI change: under each component, the most recent commits affecting
that across all remotes/branches are shown in reverse-chronological
order. I split off a separate tab under each component to list which
branches the development is going on within. Due to the way Git
branches work (they're strictly named pointers to some commit), this
is a little weird sometimes, but I have an idea on a way to better
filter them to make sure they're more relevant.

I have a live copy of this branch up at: http://zf2.evan.pro/ and I
updated the README with installation / usage instructions.

https://github.com/EvanDotPro/zf-status/tree/feature/git-direct

Would love any feedback.

--
Evan Coury

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

EvanDotPro
Alright everyone,

Another post-worth update to the ZF Status tool.

- The branch I mentioned in my previous post has been merged into
master, and I've tagged a v0.3.0 release.
- I reverted my previous UI change that had tabs under each component;
too complicated / redundant.
- Under each component, all relevant remotes/branches are shown with
their most recent respective commits. These branches and their commits
are sorted so the most recently updated are at the top.
- There is now RSS/Atom feed functionality (see http://zf2.evan.pro/feed)
- Fixed irrelevant branches showing up under the wrong components due
to merged in commits or commits from before the branch was created.
- The feed and UI at http://zf2.evan.pro/ is real time within 60 seconds.
- I set up a twitter using http://twitter.com/#!/search/zf2dev to
tweet updates (delayed up to 15 minutes).
- Matthew is currently working on getting an updated copy of this up
on the Zend Framework site (expect today or Monday)

(So Mr. Grumpy, Sir: to answer your question @
http://twitter.com/#!/padraicb/status/104243764305989632 ... It's me
;).)

As always, feedback, ideas, constructive criticism all appreciated!

--
Evan Coury

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

Stewart Lord
On 11-08-18 11:22 AM, Evan Coury wrote:

> Alright everyone,
>
> Another post-worth update to the ZF Status tool.
>
> - The branch I mentioned in my previous post has been merged into
> master, and I've tagged a v0.3.0 release.
> - I reverted my previous UI change that had tabs under each component;
> too complicated / redundant.
> - Under each component, all relevant remotes/branches are shown with
> their most recent respective commits. These branches and their commits
> are sorted so the most recently updated are at the top.
> - There is now RSS/Atom feed functionality (see http://zf2.evan.pro/feed)
> - Fixed irrelevant branches showing up under the wrong components due
> to merged in commits or commits from before the branch was created.
> - The feed and UI at http://zf2.evan.pro/ is real time within 60 seconds.
> - I set up a twitter using http://twitter.com/#!/search/zf2dev to
> tweet updates (delayed up to 15 minutes).
> - Matthew is currently working on getting an updated copy of this up
> on the Zend Framework site (expect today or Monday)
>
> (So Mr. Grumpy, Sir: to answer your question @
> http://twitter.com/#!/padraicb/status/104243764305989632 ... It's me
> ;).)
>
> As always, feedback, ideas, constructive criticism all appreciated!


Hi Evan,

Great tool! It would be nice if there was a way to sort the components
by date so that we could more easily see which ones are being worked on
'now'.

Stew

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

padraicb
In reply to this post by EvanDotPro
Yay! I was wondering who decided to spam my already heavily spammed ZF/Zend/ZF2 search with those commit msgs ;).

 
Pádraic Brady

http://blog.astrumfutura.com
http://www.survivethedeepend.com
Zend Framework Community Review Team



>________________________________
>From: Evan Coury <[hidden email]>
>To: [hidden email]
>Sent: Thursday, August 18, 2011 7:22 PM
>Subject: Re: [zf-contributors] Zend Framework 2 development status tool
>
>Alright everyone,
>
>Another post-worth update to the ZF Status tool.
>
>- The branch I mentioned in my previous post has been merged into
>master, and I've tagged a v0.3.0 release.
>- I reverted my previous UI change that had tabs under each component;
>too complicated / redundant.
>- Under each component, all relevant remotes/branches are shown with
>their most recent respective commits. These branches and their commits
>are sorted so the most recently updated are at the top.
>- There is now RSS/Atom feed functionality (see http://zf2.evan.pro/feed)
>- Fixed irrelevant branches showing up under the wrong components due
>to merged in commits or commits from before the branch was created.
>- The feed and UI at http://zf2.evan.pro/ is real time within 60 seconds.
>- I set up a twitter using http://twitter.com/#!/search/zf2dev to
>tweet updates (delayed up to 15 minutes).
>- Matthew is currently working on getting an updated copy of this up
>on the Zend Framework site (expect today or Monday)
>
>(So Mr. Grumpy, Sir: to answer your question @
>http://twitter.com/#!/padraicb/status/104243764305989632 ... It's me
>;).)
>
>As always, feedback, ideas, constructive criticism all appreciated!
>
>--
>Evan Coury
>
>--
>List: [hidden email]
>Info: http://framework.zend.com/archives
>Unsubscribe: [hidden email]
>
>
>
>
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

EvanDotPro
In reply to this post by Stewart Lord
On Thu, Aug 18, 2011 at 11:31 AM, Stewart Lord <[hidden email]> wrote:
> Hi Evan,
>
> Great tool! It would be nice if there was a way to sort the components by
> date so that we could more easily see which ones are being worked on 'now'.
>
> Stew

Here you go: http://zf2.evan.pro/recent :)

--
Evan Coury

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

padraicb
In reply to this post by EvanDotPro
A few small suggestions:

1. Can we add an order-by-date so we can view most recent updated components at top?
2. Possibly add a convenience link for commits to ZF/ZF2 hotfix branches to the issue tracker

Really great job on this!

 
Pádraic Brady

http://blog.astrumfutura.com
http://www.survivethedeepend.com
Zend Framework Community Review Team



>________________________________
>From: Evan Coury <[hidden email]>
>To: [hidden email]
>Sent: Thursday, August 18, 2011 7:22 PM
>Subject: Re: [zf-contributors] Zend Framework 2 development status tool
>
>Alright everyone,
>
>Another post-worth update to the ZF Status tool.
>
>- The branch I mentioned in my previous post has been merged into
>master, and I've tagged a v0.3.0 release.
>- I reverted my previous UI change that had tabs under each component;
>too complicated / redundant.
>- Under each component, all relevant remotes/branches are shown with
>their most recent respective commits. These branches and their commits
>are sorted so the most recently updated are at the top.
>- There is now RSS/Atom feed functionality (see http://zf2.evan.pro/feed)
>- Fixed irrelevant branches showing up under the wrong components due
>to merged in commits or commits from before the branch was created.
>- The feed and UI at http://zf2.evan.pro/ is real time within 60 seconds.
>- I set up a twitter using http://twitter.com/#!/search/zf2dev to
>tweet updates (delayed up to 15 minutes).
>- Matthew is currently working on getting an updated copy of this up
>on the Zend Framework site (expect today or Monday)
>
>(So Mr. Grumpy, Sir: to answer your question @
>http://twitter.com/#!/padraicb/status/104243764305989632 ... It's me
>;).)
>
>As always, feedback, ideas, constructive criticism all appreciated!
>
>--
>Evan Coury
>
>--
>List: [hidden email]
>Info: http://framework.zend.com/archives
>Unsubscribe: [hidden email]
>
>
>
>
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

padraicb
In reply to this post by EvanDotPro
Well, there goes my first suggestion ;)

 
Pádraic Brady

http://blog.astrumfutura.com
http://www.survivethedeepend.com
Zend Framework Community Review Team



>________________________________
>From: Evan Coury <[hidden email]>
>To: Stewart Lord <[hidden email]>
>Cc: [hidden email]
>Sent: Thursday, August 18, 2011 7:46 PM
>Subject: Re: [zf-contributors] Zend Framework 2 development status tool
>
>On Thu, Aug 18, 2011 at 11:31 AM, Stewart Lord <[hidden email]> wrote:
>> Hi Evan,
>>
>> Great tool! It would be nice if there was a way to sort the components by
>> date so that we could more easily see which ones are being worked on 'now'.
>>
>> Stew
>
>Here you go: http://zf2.evan.pro/recent :)
>
>--
>Evan Coury
>
>--
>List: [hidden email]
>Info: http://framework.zend.com/archives
>Unsubscribe: [hidden email]
>
>
>
>
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

Stewart Lord
In reply to this post by EvanDotPro
On 11-08-18 11:46 AM, Evan Coury wrote:
> On Thu, Aug 18, 2011 at 11:31 AM, Stewart Lord<[hidden email]>  wrote:
>> Hi Evan,
>>
>> Great tool! It would be nice if there was a way to sort the components by
>> date so that we could more easily see which ones are being worked on 'now'.
>>
>> Stew
>
> Here you go: http://zf2.evan.pro/recent :)


Thanks again. Is the 'recently updated' button supposed to go here?
Currently it just links to '#' for me.

Stew

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

EvanDotPro
In reply to this post by padraicb
On Thu, Aug 18, 2011 at 11:47 AM, Pádraic Brady <[hidden email]> wrote:
> 2. Possibly add a convenience link for commits to ZF/ZF2 hotfix branches to
> the issue tracker

Done. :)

--
Evan Coury

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

EvanDotPro
In reply to this post by Stewart Lord
On Thu, Aug 18, 2011 at 11:54 AM, Stewart Lord <[hidden email]> wrote:
> Thanks again. Is the 'recently updated' button supposed to go here?
> Currently it just links to '#' for me.

Ah, I had forgotten about that button. I've fixed it so now that
button acts as a toggle between the two methods of sorting.

--
Evan Coury

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

padraicb
In reply to this post by EvanDotPro
Thanks - the date filtering seems a bit off. Two modes needed? Sort by date for commits vs sort by date for component segment? Default seems to expand all components at the moment.

Issue links work great ;).

 
Pádraic Brady

http://blog.astrumfutura.com
http://www.survivethedeepend.com
Zend Framework Community Review Team



>________________________________
>From: Evan Coury <[hidden email]>
>To: Pádraic Brady <[hidden email]>
>Cc: "[hidden email]" <[hidden email]>
>Sent: Thursday, August 18, 2011 8:25 PM
>Subject: Re: [zf-contributors] Zend Framework 2 development status tool
>
>On Thu, Aug 18, 2011 at 11:47 AM, Pádraic Brady <[hidden email]> wrote:
>> 2. Possibly add a convenience link for commits to ZF/ZF2 hotfix branches to
>> the issue tracker
>
>Done. :)
>
>--
>Evan Coury
>
>
>
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

weierophinney
Administrator
In reply to this post by EvanDotPro
-- Evan Coury <[hidden email]> wrote
(on Thursday, 18 August 2011, 11:22 AM -0700):

> Another post-worth update to the ZF Status tool.
>
> - The branch I mentioned in my previous post has been merged into
> master, and I've tagged a v0.3.0 release.
> - I reverted my previous UI change that had tabs under each component;
> too complicated / redundant.
> - Under each component, all relevant remotes/branches are shown with
> their most recent respective commits. These branches and their commits
> are sorted so the most recently updated are at the top.
> - There is now RSS/Atom feed functionality (see http://zf2.evan.pro/feed)
> - Fixed irrelevant branches showing up under the wrong components due
> to merged in commits or commits from before the branch was created.
> - The feed and UI at http://zf2.evan.pro/ is real time within 60 seconds.
> - I set up a twitter using http://twitter.com/#!/search/zf2dev to
> tweet updates (delayed up to 15 minutes).
> - Matthew is currently working on getting an updated copy of this up
> on the Zend Framework site (expect today or Monday)

Up:

    http://framework.zend.com/zf2/status

It doesn't have a few features:

 * I found out in IRC that Paddy requested linking to JIRA for issues,
   and that it's in Evan's repo... so I'll need to update again.
 * I didn't implement feeds.

That said... it was relatively simple to swap out jQuery for Dojo in the
UI due to the nicely semantic markup, allowing the app to retain the ZF
site's look-and-feel, and I suspect I can get the other features in in
due order early next week.

--
Matthew Weier O'Phinney
Project Lead            | [hidden email]
Zend Framework          | http://framework.zend.com/
PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

EvanDotPro
In reply to this post by padraicb
On Thu, Aug 18, 2011 at 12:41 PM, Pádraic Brady <[hidden email]> wrote:
> Thanks - the date filtering seems a bit off. Two modes needed? Sort by date
> for commits vs sort by date for component segment? Default seems to expand
> all components at the moment.
> Issue links work great ;).

Just to clarify in case anyone else gets confused by this as well (I
am by no means a qualified UI designer): there is a bit of lag time
while jQuery iterates through the dom to create the accordion, so give
it a second or two to format itself if it looks like a mess at first.
As for sorting, the sorting of branches and their commits is always
the same: newest activity -> most stale. For the components, the
default is alphabetical, but you can toggle to have it sort the ZF
components with the most recently active first.

Also I'm open to any other ideas. Paddy's idea for linking issues to
the issue tracker was a great one. Keep them coming.

--
Evan Coury

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Zend Framework 2 development status tool

EvanDotPro
In reply to this post by weierophinney
I just pushed a small update to the ZF2 development status so that it
now tracks updates to the Zf2Mvc module that Matthew published. You
can check it out here:

http://zf2.evan.pro/recent

As previously mentioned, you can subscribe to the RSS feed:
http://zf2.evan.pro/feed or follow the progress on Twitter:
http://twitter.com/zf2dev.

Still open to suggestions and feature requests. I believe I've added
every feature requested so far. :)

--
Evan Coury

--
List: [hidden email]
Info: http://framework.zend.com/archives
Unsubscribe: [hidden email]


Loading...