Click here to register.
      
IRC banner


     Re: Weird groups > Re: Weird groups

Weird groups

User colink
Date 7/13/2008 1:57 pm
Views 878
Rating 0    Rate [
|
]
Previous · Next
User Message
colink

I'm having an off day.  I was doing some group checks, and saw groups in WebGUI that I've never seen before.  Does anyone know their history?

  1. mysql> select groupId, showInForms, groupName from groups;
  2. +------------------------+-------------+------------------------+
  3. | groupId                | showInForms | groupName              |
  4. +------------------------+-------------+------------------------+
  5. | 1                      |           1 | Visitors               |
  6. | 2                      |           1 | Registered Users       |
  7. | 3                      |           1 | Admins                 |
  8. | 4                      |           1 | Content Managers       |
  9. | 6                      |           1 | Package Managers       |
  10. | 7                      |           1 | Everyone               |
  11. | 8                      |           1 | Template Managers      |
  12. | 13                     |           1 | Export Managers        |
  13. | 11                     |           1 | Secondary Admins       |
  14. | 12                     |           1 | Turn Admin On          |
  15. | wP1Lt8NIySq9MS8xPGnAsQ |           0 | pSygeMG7bSL1Za0SNqfUbw |
  16. | OL-d6C93EeUr4Rja-q3-yQ |           0 | mdIaXozmVNE_Rga2BY0mxA |
  17. | YPCggIxdKT3AMMlML-CAuw |           0 | 9kDcFufTKbMTkeAHyP36fw |
  18. | C02CXMw3c42EJJR_nktyMw |           0 | 5Y8eOI2u_HOvkzrRuLdz1g |
  19. | zZmjNsD1FhaSFkgXvnCQUg |           0 | ImmYJRWOPFedzI4Bg1k6GA |
  20. | 14                     |           1 | Product Managers       |
  21. | pbgroup000000000000015 |           1 | Workflow Managers      |
  22. | pbgroup000000000000016 |           1 | Version Tag Managers   |
  23. | pbgroup000000000000017 |           1 | Ad Manager             |
  24. +------------------------+-------------+------------------------+


Back to Top
Rate [
|
]
 
 
JT
Which specifically? Or all?

JT
On Jul 13, 2008, at 1:57 PM, <ckuskie@sterlink.net> wrote:

colink wrote:

I'm having an off day.  I was doing some group checks, and saw groups in WebGUI that I've never seen before.  Does anyone know their history?

  1. mysql> select groupId, showInForms, groupName from groups;
  2. +------------------------+-------------+------------------------+
  3. | groupId                | showInForms | groupName              |
  4. +------------------------+-------------+------------------------+
  5. | 1                      |           1 | Visitors               |
  6. | 2                      |           1 | Registered Users       |
  7. | 3                      |           1 | Admins                 |
  8. | 4                      |           1 | Content Managers       |
  9. | 6                      |           1 | Package Managers       |
  10. | 7                      |           1 | Everyone               |
  11. | 8                      |           1 | Template Managers      |
  12. | 13                     |           1 | Export Managers        |
  13. | 11                     |           1 | Secondary Admins       |
  14. | 12                     |           1 | Turn Admin On          |
  15. | wP1Lt8NIySq9MS8xPGnAsQ |           0 | pSygeMG7bSL1Za0SNqfUbw |
  16. | OL-d6C93EeUr4Rja-q3-yQ |           0 | mdIaXozmVNE_Rga2BY0mxA |
  17. | YPCggIxdKT3AMMlML-CAuw |           0 | 9kDcFufTKbMTkeAHyP36fw |
  18. | C02CXMw3c42EJJR_nktyMw |           0 | 5Y8eOI2u_HOvkzrRuLdz1g |
  19. | zZmjNsD1FhaSFkgXvnCQUg |           0 | ImmYJRWOPFedzI4Bg1k6GA |
  20. | 14                     |           1 | Product Managers       |
  21. | pbgroup000000000000015 |           1 | Workflow Managers      |
  22. | pbgroup000000000000016 |           1 | Version Tag Managers   |
  23. | pbgroup000000000000017 |           1 | Ad Manager             |
  24. +------------------------+-------------+------------------------+


http://www.plainblack.com/webgui/dev/discuss/weird-groups


--

Plain Black&#44; makers of WebGUI
http://plainblack.com


Back to Top
Rate [
|
]
 
 
colink

Just the ones with 22-character IDs _and_ groupNames.  If you grep or ack through the code you find them added in create.sql and previousVersion.sql, but you won't find them used anywhere.

 



Back to Top
Rate [
|
]
 
 
JT
If you modify your query a little you'll see what they are for:
select groupId,groupName,description from groups;

WebGUI dynamically creates hidden groups for things like subscriptions.  We should probably make it use more descriptive names, but they're hidden so they don't usually cause too much harm.

On Jul 13, 2008, at 5:24 PM, <ckuskie@sterlink.net> <ckuskie@sterlink.net> wrote:
colink wrote:

Just the ones with 22-character IDs _and_ groupNames.  If you grep or ack through the code you find them added in create.sql and previousVersion.sql, but you won't find them used anywhere.

 


http://www.plainblack.com/webgui/dev/discuss/weird-groups/2

--

Plain Black&#44; makers of WebGUI
http://plainblack.com


JT Smithph: 703-286-2525 x810fx: 312-264-5382
Create like a god. Command like a king. Work like a slave.


Back to Top
Rate [
|
]
 
 
Graham
They've existed in WebGUI for as long as SVN has been around, but the threads they correspond to don't exist anymore.  I'll clean them up for the next release.
On Jul 14, 2008, at 4:15 PM, <jt@plainblack.com> <jt@plainblack.com> wrote:
JT wrote:

If you modify your query a little you'll see what they are for:
select groupId,groupName,description from groups;

WebGUI dynamically creates hidden groups for things like subscriptions.  We should probably make it use more descriptive names, but they're hidden so they don't usually cause too much harm.

On Jul 13, 2008, at 5:24 PM, <ckuskie@sterlink.net> <ckuskie@sterlink.net> wrote:
colink wrote:

Just the ones with 22-character IDs _and_ groupNames.  If you grep or ack through the code you find them added in create.sql and previousVersion.sql, but you won't find them used anywhere.

 


http://www.plainblack.com/webgui/dev/discuss/weird-groups/2

--

Plain Black&#44; makers of WebGUI
http://plainblack.com


JT Smithph: 703-286-2525 x810fx: 312-264-5382
Create like a god. Command like a king. Work like a slave.


http://www.plainblack.com/webgui/dev/discuss/weird-groups/3

--

Plain Black&#44; makers of WebGUI
http://plainblack.com



Back to Top
Rate [
|
]
 
 

Recent Discussions Color Key

Design:

Development:

Et Cetera:

Install/Upgrade:  

Smoketest:

Template Group:


Re: Site paid for by advertizing by Klaus - Fri @ 02:27am

Smoke Test for WebGUI (Stable) (2008-11-21) by botaction - Fri @ 12:37am

Re: Site paid for by advertizing by pwrightson - Thu @ 10:59am

Re: Site paid for by advertizing by JT - Thu @ 08:58am

Re: Regelmäßiger Termin für Usertreffen in der Rhein-Neckar-Region by Klaus - Thu @ 06:11am

Smoke Test for WebGUI (Stable) (2008-11-20) by botaction - Thu @ 12:00am

Smoke Test for SVN (2008-11-20) by botaction - Thu @ 12:00am

Re: Improving page layouts by fdillon - Wed @ 08:38pm

Re: Improving page layouts by knowmad - Wed @ 08:25pm

Re: Site paid for by advertizing by knowmad - Wed @ 08:07pm

Re: SSL Configuration? by knowmad - Wed @ 07:51pm

Re: The Death of the Collaboration System by preaction - Wed @ 07:39pm