Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

how to display filtered configuration? #1839

stevenlab ·
for example, just display qa build in a new gadget.

and is there a way to link a configuration to another one? if yes, I can make some links to resolve this. Thanks a lot!
  • replies 5
  • views 1629
  • stars 0
robinshen ADMIN ·
The gadget can only display a sub tree of configuration. To display filtered configuration, you may consider to write a custom gadget to do the job.
stevenlab ·
ok, could you please paste all useful link to create a plugin? I will try it step by step, interesting work for me, always. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
robinshen ADMIN ·
Please follow below guide to create QB custom plugins:
http://wiki.pmease.com/display/QB40/Develop+Plugins

For your task, you will be extending the GadgetProvider extension point:
http://build.pmease.com/download/1838/h ... vider.html
stevenlab ·
hi robin,

I found a "easy" way: <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->
1. create a group dailybuild which only display dailybuild
2. create a user dailybuild who belong to the group

but I have to add configurations one by one in the group, is there any way to add it with some scripts in the group? Thanks a lot!
robinshen ADMIN ·
That is much easier than writing a custom plugin, <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
The down side is that you will need to add configurations one by one as each authorization represents a row in the authorization table in database. There are requests previously to support wildcard/scripting for this setup, but the performance is a problem (considering there might be tens of hundreds of configurations) so we did not make that change.