[JBoss JIRA] (JBSEAM-2231) Setup wizard for wiki
by Marek Novotny (JIRA)
[ https://issues.jboss.org/browse/JBSEAM-2231?page=com.atlassian.jira.plugi... ]
Marek Novotny closed JBSEAM-2231.
---------------------------------
Resolution: Won't Fix
closing, wiki example is EOL
> Setup wizard for wiki
> ---------------------
>
> Key: JBSEAM-2231
> URL: https://issues.jboss.org/browse/JBSEAM-2231
> Project: Seam 2
> Issue Type: Feature Request
> Components: Wiki
> Reporter: Christian Bauer
> Priority: Blocker
>
> Write a setup wizard that replaces the manual wiki-data.sql editing and import. We should have the following setup procedure:
> - Get the recommended environment ready (JBoss AS, MySQL)
> - Deploy the wiki-ddl.sql on a new database
> - Deploy the wiki.war on the appserver
> - Open http://server/wiki/ and go through the setup wizard
> The wizard will first import the minimum dataset (guest/admin users, roles, start page) and then ask the usual setup questions (site base URL, etc.). Depending on the future of the plugin API, it could also optionally allow you to configure some plugin defaults so you don't have to go into the Admin screen to change them after the install. Also, we can offer prepackaged datasets for certain use cases that can be imported with the wizard, e.g. "Help Documents", "Blog Website", "Forum Website".
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 6 months
[JBoss JIRA] (JBSEAM-2231) Setup wizard for wiki
by Marek Novotny (JIRA)
[ https://issues.jboss.org/browse/JBSEAM-2231?page=com.atlassian.jira.plugi... ]
Marek Novotny closed JBSEAM-2231.
---------------------------------
Resolution: Done
closing, wiki example is EOL
> Setup wizard for wiki
> ---------------------
>
> Key: JBSEAM-2231
> URL: https://issues.jboss.org/browse/JBSEAM-2231
> Project: Seam 2
> Issue Type: Feature Request
> Components: Wiki
> Reporter: Christian Bauer
> Priority: Blocker
>
> Write a setup wizard that replaces the manual wiki-data.sql editing and import. We should have the following setup procedure:
> - Get the recommended environment ready (JBoss AS, MySQL)
> - Deploy the wiki-ddl.sql on a new database
> - Deploy the wiki.war on the appserver
> - Open http://server/wiki/ and go through the setup wizard
> The wizard will first import the minimum dataset (guest/admin users, roles, start page) and then ask the usual setup questions (site base URL, etc.). Depending on the future of the plugin API, it could also optionally allow you to configure some plugin defaults so you don't have to go into the Admin screen to change them after the install. Also, we can offer prepackaged datasets for certain use cases that can be imported with the wizard, e.g. "Help Documents", "Blog Website", "Forum Website".
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 6 months
[JBoss JIRA] (JBSEAM-2722) Wiki plugin metadata
by Marek Novotny (JIRA)
[ https://issues.jboss.org/browse/JBSEAM-2722?page=com.atlassian.jira.plugi... ]
Marek Novotny closed JBSEAM-2722.
---------------------------------
Resolution: Won't Fix
closing, wiki example is EOL
> Wiki plugin metadata
> --------------------
>
> Key: JBSEAM-2722
> URL: https://issues.jboss.org/browse/JBSEAM-2722
> Project: Seam 2
> Issue Type: Task
> Components: Wiki
> Reporter: Christian Bauer
> Priority: Blocker
>
> Plugins/macros need metadata, some random ideas:
> protected String[] skins = {"d", "m"}
> protected long accessLevel = 0;
> protected boolean documentDiscriminator = false;
> protected boolean reentrant = true;
> protected boolean renderedOnce = false;
> protected boolean affectsRenderingOnly = true;
> protected boolean appliesToHeader = false;
> protected boolean appliesToContent = true;
> protected boolean appliesToFooter = false;
> protected boolean displayedInPreview = true;
> createMethodBuildTime
> createMethodRenderTime
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 6 months
[JBoss JIRA] (JBSEAM-4020) Custom RESTEasy StringConverter provider classes need special registration
by Marek Novotny (JIRA)
[ https://issues.jboss.org/browse/JBSEAM-4020?page=com.atlassian.jira.plugi... ]
Marek Novotny closed JBSEAM-4020.
---------------------------------
Assignee: Christian Bauer
Resolution: Done
correct resolution
> Custom RESTEasy StringConverter provider classes need special registration
> --------------------------------------------------------------------------
>
> Key: JBSEAM-4020
> URL: https://issues.jboss.org/browse/JBSEAM-4020
> Project: Seam 2
> Issue Type: Task
> Components: WS
> Reporter: Christian Bauer
> Assignee: Christian Bauer
> Fix For: 2.2.0.GA
>
>
> RESTEasy offers a custom StringConverter provider extension. Unlike normal providers, the SPI in RESTEasy for registration of these providers is different:
> if (StringConverter.class.isAssignableFrom(providerClass)) {
> providerFactory.addStringConverter(providerClass);
> } else {
> providerFactory.registerProvider(providerClass);
> }
> This needs to be fixed in RestEasyDispatcher.java
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 6 months
[JBoss JIRA] (JBSEAM-1693) Imports
by Marek Novotny (JIRA)
[ https://issues.jboss.org/browse/JBSEAM-1693?page=com.atlassian.jira.plugi... ]
Marek Novotny closed JBSEAM-1693.
---------------------------------
Assignee: Gavin King
Fix Version/s: 2.0.0.GA
(was: The future)
Resolution: Done
> Imports
> -------
>
> Key: JBSEAM-1693
> URL: https://issues.jboss.org/browse/JBSEAM-1693
> Project: Seam 2
> Issue Type: Feature Request
> Components: Core
> Affects Versions: 2.0.0.BETA1
> Reporter: Gavin King
> Assignee: Gavin King
> Fix For: 2.0.0.GA
>
>
> Currently Seam does no special processing for qualified names. The only way to alias a name to a shorter name is via <factory>.
> We should provide:
> * global import of a qualifier in components.xml
> * import into a component or Java package via @Import
> * import into a page (ie. a view id) via pages.xml
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 6 months
[JBoss JIRA] (JBSEAM-1693) Imports
by Marek Novotny (JIRA)
[ https://issues.jboss.org/browse/JBSEAM-1693?page=com.atlassian.jira.plugi... ]
Marek Novotny reopened JBSEAM-1693:
-----------------------------------
wrong resolution therefore reopenning
> Imports
> -------
>
> Key: JBSEAM-1693
> URL: https://issues.jboss.org/browse/JBSEAM-1693
> Project: Seam 2
> Issue Type: Feature Request
> Components: Core
> Affects Versions: 2.0.0.BETA1
> Reporter: Gavin King
> Fix For: The future
>
>
> Currently Seam does no special processing for qualified names. The only way to alias a name to a shorter name is via <factory>.
> We should provide:
> * global import of a qualifier in components.xml
> * import into a component or Java package via @Import
> * import into a page (ie. a view id) via pages.xml
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 6 months