Ideas Application
![]() | Ideas Management Application |
Type | XAR |
Developed by | Ludovic Dubost, Alexandru Chelariu, Sorin Burjan, Florian Véron, Thomas Mortagne, Manuel Smeria, Gabriela Smeria |
Active Installs | 335 |
Rating | |
License | GNU Lesser General Public License 2.1 |
Table of contents
Description
This application allows to suggest ideas.
Ideas Listing
Home page
The home page lists all submitted ideas and the number of people supporting it.
- Add or remove your support by clicking on the number of vote.
- Add an idea by adding new entry and filling the idea and its description.
- Vote an idea and YOUR vote will be highlighted
Recent ideas macro
This macro also lists all ideas and the number of votes.
- You can use this macro, by writing in a page with wiki editor:
{{ideasrecent limit=10 /}}
Where the macro parameter limit is the maximum number of ideas that you want to be displayed on your page. Its default value is 5.
- Or, if you don't want to set a maximum number of ideas, you just write:
{{ideasrecent /}}
This is how it will look like before adding ideas:
And after adding them:
Idea Details
Access details by clicking on the idea.
Additional information are showed here:
- List of people supporting this idea, as well as people against it
- Confirmation if logged user support this idea
- Some fields (new in 1.2.1) allow to track status of the idea
Restriction
Guests cannot vote or display supporter list.
Screenshots
- Create a new idea item:
- Idea details:
- Ideas list:
Tested on
This extension has been tested with the following configurations.
Extension Version | XWiki Flavor | Notes |
---|---|---|
1.1.2 | XWiki Enterprise 4.4.1, 4.5 | |
1.3 | XWiki Enterprise 6.0.1 | |
1.4 | XWiki Enterprise 6.2 | |
1.6 | XWiki Enterprise 6.2.4 | |
1.7 | XWiki Enterprise 5.4.6, 6.4-M1 | |
1.8 | XWiki Enterprise 6.4-M1, 6.4 | |
1.8.4 | XWiki Enterprise 7.2 | |
1.8.5 | XWiki Enterprise 9.1.2 | |
1.8.5 | XWiki 9.8.1 | Known issue: https://jira.xwiki.org/browse/IDEAS-64 |
1.8.5 | XWiki 9.9 | Known issue: https://jira.xwiki.org/browse/IDEAS-64 |
Prerequisites & Installation Instructions
We recommend using the Extension Manager to install this extension (Make sure that the text "Installable with the Extension Manager" is displayed at the top right location on this page to know if this extension can be installed with the Extension Manager). Note that installing Extensions when being offline is currently not supported and you'd need to use some complex manual method.
You can also use the following manual method, which is useful if this extension cannot be installed with the Extension Manager or if you're using an old version of XWiki that doesn't have the Extension Manager:
- Log in the wiki with a user having Administration rights
- Go to the Administration page and select the Import category
- Follow the on-screen instructions to upload the downloaded XAR
- Click on the uploaded XAR and follow the instructions
- You'll also need to install all dependent Extensions that are not already installed in your wiki
Setting the Recent Ideas gadget
- Go to your dashboard
- Edit it in inline mode and click on "Add gadget"
- Search for "Recent Ideas"
- Select it and edit the required parameters if needed
- Click "Insert gadget"
- You're done!
Release Notes
v1.8.5
IDEAS-62Use livetable 'extraparams' option to add params to querystringIDEAS-61Error 500 on Ideas.WebHome with any account
v1.8.4
IDEAS-48When you create an idea, the status should be only openIDEAS-37Estimated cost field displays unrendered value on IE9
v1.8.3
IDEAS-55Update commons dependency to 5.4.1IDEAS-53Change Recent Ideas Macro visibility from 'Global' to 'Current Wiki'IDEAS-52Translate Recent Ideas Macro (+parameters)IDEAS-50Improve deprecated warnings from the console
v1.8.2
IDEAS-47Mark Ideas.RecentIdeasMacro page as hiddenIDEAS-46Display 'Add idea' message only if you have rightsIDEAS-45Uppercase the recent ideas macro's title
v1.8.1
IDEAS-44Create french translation for the entry in app panel and the title from homepageIDEAS-43Create a macro to display the N most recent ideasIDEAS-42Remove the word 'home' from homepage titleIDEAS-38Change translation for alert box when voting as a guest
v1.8
IDEAS-39In edit mode, labels are not translated
v1.7
IDEAS-36The ideas' livetable is missing .controlPagination iconsIDEAS-35Improve ColorTheme variable usage for Vote SSXIDEAS-31Improve the design of Ideas ApplicationIDEAS-29No indicator that we need to enter a numerical value in 'Estimated cost'IDEAS-28Remove hr surrounding the Idea's DescriptionIDEAS-24It shouldn't be possible to vote on closed ideas
v1.6
IDEAS-34Fix parent for Ideas pagesIDEAS-30Remove tabbed information (comments, attachments, etc) from Ideas.WebHomeIDEAS-27When creating a new idea, copy the page name to the 'Idea' field
v1.5
IDEAS-26"Pro" and "Con" options are not well displayed on Flamingo
v1.4
IDEAS-23"Priority" column values are not not translated in the livetableIDEAS-21Be able to know which ideas you already voted
Migration from v1.3
From v1.3, the key values of the property priority have been modified. Run the following script once to migrate.
#set($query = 'from doc.object(Ideas.IdeasClass) as idea')
#set($results = $services.query.xwql($query).addFilter("unique").execute())
#foreach($r in $results)
#set($ideapage = $xwiki.getDocument($r))
#set($idea = $ideapage.getObject('Ideas.IdeasClass'))
#set($priority = $idea.getProperty('priority').value)
#set($discard = $idea.set('priority', "$stringtool.lowerCase($priority)"))
* Update //priority// property from [${priority}] to [${idea.get('priority')}] in page '[[${ideapage.title}>>${ideapage}]]'
#set($discard = $ideapage.save())
#end
{{/velocity}}
Migration from v1.2.1
From v1.2.1, the key values of the property priority have been modified and you may have incorrect values in assignement property. Run the following script once to migrate.
The priority property will be modified considering the following rule:
- 'Critical' becomes 'high'
- 'High' becomes 'high'
- 'Normal' becomes 'medium'
- 'Low' becomes 'low'
#set($query = 'from doc.object(Ideas.IdeasClass) as idea')
#set($results = $services.query.xwql($query).addFilter("unique").execute())
#foreach($r in $results)
#set($ideapage = $xwiki.getDocument($r))
#set($idea = $ideapage.getObject('Ideas.IdeasClass'))
#set($priority = $idea.getProperty('priority').value)
#set($assignement = "$idea.getProperty('assignement').value")
#set($userpage = $xwiki.getDocument($assignement))
#set($user = $userpage.getObject('XWiki.XWikiUsers'))
#set($isUser = false)
#if($user)
#set($isUser = true)
#end
#if("$priority" == 'Critical')
#set($discard = $idea.set('priority', 'high'))
* Update //priority// property from [${priority}] to [high] in page '[[${ideapage.title}>>${ideapage}]]'
#elseif("$priority" == 'Normal')
#set($discard = $idea.set('priority', 'medium'))
* Update //priority// property from [${priority}] to [medium] in page '[[${ideapage.title}>>${ideapage}]]'
#elseif("$priority" == 'High' || "$priority" == 'Low')
#set($discard = $idea.set('priority', "$stringtool.lowerCase($priority)"))
* Update //priority// property from [${priority}] to [low] in page '[[${ideapage.title}>>${ideapage}]]'
#else
#set($discard = $idea.set('priority', ''))
* Update //priority// property from [${priority}] to [] in page '[[${ideapage.title}>>${ideapage}]]'
#end
## Assignement should only be a user
#if(!$isUser)
#set($discard = $idea.set('assignement', ''))
* Update //assignement// property from [${assignement}] to [] in page '[[${ideapage.title}>>${ideapage}]]'
#end
#set($discard = $ideapage.save())
#end
{{/velocity}}
v1.3
IDEAS-19Rename 'Assigned to' and 'Assignment' keys to 'Assignee'IDEAS-18Change Priority levelsIDEAS-15Mark as hidden all internal pagesIDEAS-14Ideas.WebHome's parent should be Main.WebHome and not AppWithinMinutes.WebHomeIDEAS-13The user avatars are not displayed well when the user is not logged inIDEAS-12Rename "Votes" with "Yes" and "Against" with "No"IDEAS-11Field names should have the same characters capitalization in the livetableIDEAS-10Use bold text just for the table head, not for the text inside the rowsIDEAS-9Misaligned text after you voted an ideaIDEAS-8After you create an idea, you can't see it on the livetableIDEAS-6Missing translationsIDEAS-5Translation pages are still brokenIDEAS-4Wrong developer in POM
v1.2.1
New version of the Ideas application with new features:
- Vote against
- Additional fields to track evolution of the idea
- Status (open / close / rejected)
- Cost
- Assignee
To upgrade from 1.1.x please visit Ideas.FixIdeas to upgrade the existing ideas.
v1.1.2
Second version of the ideas application
v1.0
First version of the ideas application