|
View:
New views
11 Messages
—
Rating Filter:
Alert me
|
|
|
#roadmap update, July 7, 09So as per recent discussion, discussing the road map is to be moved to
email. So here goes the first update: * 2.0-beta2 release date The new date on the table for beta2 is next Monday, July 13 * Issue status update We still have three critical issues unresolved: - http://jira.codehaus.org/browse/GEOS-3149, groldan Ensuring namespace param always in sync with workspace - http://jira.codehaus.org/browse/GEOS-3185, aaime Revert back to "refresh" mode as the KML default - http://jira.codehaus.org/browse/GEOS-3078, jdeolive Move web2 to core If the people whose names on the list could reply with a quick status update that would be great. I won't go into the lower priority issues. But if there are any issues that need to promoted or demoted, or that you just wish to comment on, please reply accordingly. Thanks, -Justin -- Justin Deoliveira OpenGeo - http://opengeo.org Enterprise support for open source geospatial. ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09>
> - http://jira.codehaus.org/browse/GEOS-3078, jdeolive > Move web2 to core I have just committed some docs for the test module. Will check in Andrea about test coverage. But on track. -- Justin Deoliveira OpenGeo - http://opengeo.org Enterprise support for open source geospatial. ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09> - http://jira.codehaus.org/browse/GEOS-3149, groldan
> Ensuring namespace param always in sync with workspace I'm putting hands on right away. Gonna report back when it's ready. -- Gabriel Roldan OpenGeo - http://opengeo.org Expert service straight from the developers. ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09Justin Deoliveira ha scritto:
> So as per recent discussion, discussing the road map is to be moved to > email. So here goes the first update: > > * 2.0-beta2 release date > > The new date on the table for beta2 is next Monday, July 13 > > * Issue status update > > We still have three critical issues unresolved: > > - http://jira.codehaus.org/browse/GEOS-3149, groldan > Ensuring namespace param always in sync with workspace > > - http://jira.codehaus.org/browse/GEOS-3185, aaime > Revert back to "refresh" mode as the KML default Working on wicket ui test coverage, will tackle this one tomorrow Cheers Andrea -- Andrea Aime OpenGeo - http://opengeo.org Expert service straight from the developers. ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09I just committed a means to keep the namespace synchronized with the
workspace anytime the workspace changes. It uses an ajax call to update the namespace drop down, and the namespace dropdown is disabled to void manual changes. The odd thing is the "onchange" event for the workspace dropdown doesn't seem to be triggered if you select a different workspace with the up/down arrow keys instead of using the mouse... any idea what event should I listen for to cover that case? code is something like: wsDropDown.add(new AjaxFormComponentUpdatingBehavior("onchange") { private static final long serialVersionUID = 1L; @Override protected void onUpdate(AjaxRequestTarget target) { WorkspaceInfo ws = (WorkspaceInfo) wsDropDown.getModelObject(); String prefix = ws.getName(); NamespaceInfo namespaceInfo = getCatalog().getNamespaceByPrefix(prefix); IModel nsModel = new Model(namespaceInfo); DropDownChoice nsDropDown = namespacePanel.getFormComponent(); nsDropDown.setModel(nsModel); target.addComponent(nsDropDown); } }); Gabriel Roldan wrote: >> - http://jira.codehaus.org/browse/GEOS-3149, groldan >> Ensuring namespace param always in sync with workspace > I'm putting hands on right away. Gonna report back when it's ready. > > -- Gabriel Roldan OpenGeo - http://opengeo.org Expert service straight from the developers. ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09Andrea Aime ha scritto:
> Justin Deoliveira ha scritto: >> So as per recent discussion, discussing the road map is to be moved to >> email. So here goes the first update: >> >> * 2.0-beta2 release date >> >> The new date on the table for beta2 is next Monday, July 13 >> >> * Issue status update >> >> We still have three critical issues unresolved: >> >> - http://jira.codehaus.org/browse/GEOS-3149, groldan >> Ensuring namespace param always in sync with workspace >> >> - http://jira.codehaus.org/browse/GEOS-3185, aaime >> Revert back to "refresh" mode as the KML default > > Working on wicket ui test coverage, will tackle this one tomorrow Done pumping up the code coverage. Current levels: - web-core: 61% - demo: 52% - wms: 60% - wfs: 67% - wcs: 69% - app: 44% So it seems to be good for graduation. Downside: it now takes 2 minutes to build web2... I have to look into it, my guess is that it still takes a lot of time to look up the i18n strings but it's just a gut feeling Cheers Andrea -- Andrea Aime OpenGeo - http://opengeo.org Expert service straight from the developers. ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09Justin Deoliveira wrote:
> So as per recent discussion, discussing the road map is to be moved to > email. So here goes the first update: > * 2.0-beta2 release date > The new date on the table for beta2 is next Monday, July 13 > * Issue status update It has been brought to my attention that there is no mention on the short term road map of app-schema. My apologies for this blunder. I have created GSIP 39 to seek community approval to bundle this as an extension: http://geoserver.org/display/GEOS/GSIP+39+-+Promote+app-schema+to+extension I have also created GEOS-3250 and tagged it fix version 2.0_beta2 http://jira.codehaus.org/browse/GEOS-3250 (This was the missing bit, needed to get it formally into the short-term roadmap). Monday should still be OK if we can get the default 512M for tests on Hudson. Otherwise, we will be blocked for perhaps weeks trying to reduce the memory footprint of the tests. Kind regards, -- Ben Caradoc-Davies <Ben.Caradoc-Davies@...> Software Engineer, CSIRO Exploration and Mining Australian Resources Research Centre 26 Dick Perry Ave, Kensington WA 6151, Australia ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09Ben Caradoc-Davies wrote:
> Justin Deoliveira wrote: >> So as per recent discussion, discussing the road map is to be moved to >> email. So here goes the first update: >> * 2.0-beta2 release date >> The new date on the table for beta2 is next Monday, July 13 >> * Issue status update > > It has been brought to my attention that there is no mention on the > short term road map of app-schema. My apologies for this blunder. No worries Ben, the process is not well documented, and I sort of just assumed that people were aware of it. So apologies. That said, as you have stated you have went through all the paces of the proposal etc, so its close. I for one would be fine with pushing back the release a few days to ensure app-schema gets in, since it is so close and all that really needs to be done is voting. If others feel the same way we can move the proposal through the vote, fix all the issues with the build (upping memory seems to be the short term solution), and do the move to extension. Then release. Comments? > > I have created GSIP 39 to seek community approval to bundle this as an > extension: > http://geoserver.org/display/GEOS/GSIP+39+-+Promote+app-schema+to+extension > > I have also created GEOS-3250 and tagged it fix version 2.0_beta2 > http://jira.codehaus.org/browse/GEOS-3250 > > (This was the missing bit, needed to get it formally into the short-term > roadmap). > > Monday should still be OK if we can get the default 512M for tests on > Hudson. Otherwise, we will be blocked for perhaps weeks trying to reduce > the memory footprint of the tests. > > Kind regards, > -- Justin Deoliveira OpenGeo - http://opengeo.org Enterprise support for open source geospatial. ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09> I for one would be fine with pushing back the release a few days to
> ensure app-schema gets in, since it is so close and all that really > needs to be done is voting. If others feel the same way we can move the > proposal through the vote, fix all the issues with the build (upping > memory seems to be the short term solution), and do the move to > extension. Then release. > > Comments? I would be fine with delaying the release (and have already voted on the GSIP). In terms of scheduling I think it would be really important to get this feature (and associated documentation) some community exposure and testing earlier rather than later. Jody ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09Justin Deoliveira ha scritto:
> Ben Caradoc-Davies wrote: >> Justin Deoliveira wrote: >>> So as per recent discussion, discussing the road map is to be moved to >>> email. So here goes the first update: >>> * 2.0-beta2 release date >>> The new date on the table for beta2 is next Monday, July 13 >>> * Issue status update >> It has been brought to my attention that there is no mention on the >> short term road map of app-schema. My apologies for this blunder. > > No worries Ben, the process is not well documented, and I sort of just > assumed that people were aware of it. So apologies. That said, as you > have stated you have went through all the paces of the proposal etc, so > its close. > > I for one would be fine with pushing back the release a few days to > ensure app-schema gets in, since it is so close and all that really > needs to be done is voting. If others feel the same way we can move the > proposal through the vote, fix all the issues with the build (upping > memory seems to be the short term solution), and do the move to > extension. Then release. > > Comments? Works for me Cheers Andrea -- Andrea Aime OpenGeo - http://opengeo.org Expert service straight from the developers. ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
|
|
Re: #roadmap update, July 7, 09Justin Deoliveira wrote:
> No worries Ben, the process is not well documented, and I sort of just > assumed that people were aware of it. So apologies. That said, as you > have stated you have went through all the paces of the proposal etc, so > its close. You made me aware of it ... I just didn't understand it. -- Ben Caradoc-Davies <Ben.Caradoc-Davies@...> Software Engineer, CSIRO Exploration and Mining Australian Resources Research Centre 26 Dick Perry Ave, Kensington WA 6151, Australia ------------------------------------------------------------------------------ Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited time, vendors submitting new applications to BlackBerry App World(TM) will have the opportunity to enter the BlackBerry Developer Challenge. See full prize details at: http://p.sf.net/sfu/Challenge _______________________________________________ Geoserver-devel mailing list Geoserver-devel@... https://lists.sourceforge.net/lists/listinfo/geoserver-devel |
| Free embeddable forum powered by Nabble | Forum Help |