On 15/03/07, Al Maw <[EMAIL PROTECTED]> wrote:
As part of our ongoing incubation process at Apache, we're going to be renaming the core wicket package from "wicket" to "org.apache.wicket" shortly (not quite sure when yet, but soon).If you're developing against the subversion wicket-1.x branch, you'll need to change your imports accordingly.
And possible web.xml & Javadocs (e.g. @see wicket.model.IModel#getNestedModel())
If someone feels like telling IDEA/NetBeans/ other IDE users how best to accomplish this, by all means tell us. :-)
With IDEA, the best way is probably "Refactor/Migrate" then "New..." then "Add" a "Package" mapping from "wicket" to "org.apache.wicket". Give it a name, e.g. "Wicket to Apache Wicket" then run it - you'll be able to preview/exclude the changes as normal. (If the attatchment comes through, just drop it in your IDEA's config\migration\ folder to have the mapping setup for you, but it's no big deal if it doesn't.) You'll need to exclude the wicket.contrib manually (or just run it then migrate org.apache.wicket.contrib back to wicket.contrib)! /Gwyn -- Download Wicket 1.2.5 now! - http://wicketframework.org
<?xml version="1.0" encoding="UTF-8"?> <migrationMap> <name value="Wicket -> Apache Wicket" /> <description value="" /> <entry oldName="wicket" newName="org.apache.wicket" type="package" recursive="true" /> </migrationMap>
------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
