From issues at jboss.org Tue Apr 7 04:04:18 2015 From: issues at jboss.org (Tuyen Nguyen The (JIRA)) Date: Tue, 7 Apr 2015 04:04:18 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3583) Picketlink IDM implementation does not implement GroupHandler#addChild() correctly In-Reply-To: References: Message-ID: Tuyen Nguyen The created GTNPORTAL-3583: ------------------------------------------- Summary: Picketlink IDM implementation does not implement GroupHandler#addChild() correctly Key: GTNPORTAL-3583 URL: https://issues.jboss.org/browse/GTNPORTAL-3583 Project: GateIn Portal Issue Type: Bug Reporter: Tuyen Nguyen The Assignee: Tuyen Nguyen The Api doc of GroupHandler#addChild() tell that an exception is thrown if the method fail to persist the new group or *there is already one child group with the same group name in the database* or any registered listener fail to handle the event. But the IDM implementation does not throw exception when add new groupChild same name with existing one, it will update attribute of existing one to be the same new one. And This test case is failure: {code} @Test public void testAddDuplicateGroup() throws Exception { /* Create a parent group with name is: GroupParent */ String parentName = "testDuplicateGroup_GroupParent"; Group groupParent = groupHandler_.createGroupInstance(); groupParent.setGroupName(parentName); groupParent.setDescription("This is description"); groupHandler_.addChild(null, groupParent, true); groupParent = groupHandler_.findGroupById(groupParent.getId()); /* Create a child group with name: Group1 */ Group groupChild1 = groupHandler_.createGroupInstance(); groupChild1.setGroupName("testAddDuplicateGroup"); groupChild1.setLabel("Group1 Label"); groupHandler_.addChild(groupParent, groupChild1, true); assertEquals(groupHandler_.findGroupById(groupChild1.getId()).getLabel(), "Group1 Label"); try { //. Add new group with same name Group groupChild2 = groupHandler_.createGroupInstance(); groupChild2.setGroupName("testAddDuplicateGroup"); groupChild2.setLabel("Group2 Label"); groupHandler_.addChild(groupParent, groupChild2, true); fail("Exception should be thrown because group child is existing"); } catch (Exception ex) { } assertEquals(groupHandler_.findGroupById(groupChild1.getId()).getLabel(), "Group1 Label"); } {code} We should update IDM implementation of this method to align with the API doc. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 7 08:08:18 2015 From: issues at jboss.org (=?UTF-8?Q?Juraci_Paix=C3=A3o_Kr=C3=B6hling_=28JIRA=29?=) Date: Tue, 7 Apr 2015 08:08:18 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3584) SSO packaging - PicketLink module reorganization In-Reply-To: References: Message-ID: Juraci Paix?o Kr?hling created GTNPORTAL-3584: ------------------------------------------------- Summary: SSO packaging - PicketLink module reorganization Key: GTNPORTAL-3584 URL: https://issues.jboss.org/browse/GTNPORTAL-3584 Project: GateIn Portal Issue Type: Bug Components: Packaging Reporter: Juraci Paix?o Kr?hling Assignee: Juraci Paix?o Kr?hling Due to changes into how PicketLink modules are organized, the JBoss Module for gatein-sso needs to be updated. See BZ 1205327 -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 7 08:09:18 2015 From: issues at jboss.org (=?UTF-8?Q?Juraci_Paix=C3=A3o_Kr=C3=B6hling_=28JIRA=29?=) Date: Tue, 7 Apr 2015 08:09:18 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3584) SSO packaging - PicketLink module reorganization In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Juraci Paix?o Kr?hling updated GTNPORTAL-3584: ---------------------------------------------- Status: Pull Request Sent (was: Open) Git Pull Request: https://github.com/gatein/gatein-portal/pull/934 > SSO packaging - PicketLink module reorganization > ------------------------------------------------ > > Key: GTNPORTAL-3584 > URL: https://issues.jboss.org/browse/GTNPORTAL-3584 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Reporter: Juraci Paix?o Kr?hling > Assignee: Juraci Paix?o Kr?hling > > Due to changes into how PicketLink modules are organized, the JBoss Module for gatein-sso needs to be updated. See BZ 1205327 -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 7 08:09:18 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 7 Apr 2015 08:09:18 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3584) SSO packaging - PicketLink module reorganization In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated GTNPORTAL-3584: ----------------------------------------------- Bugzilla Update: Perform Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=1205327 > SSO packaging - PicketLink module reorganization > ------------------------------------------------ > > Key: GTNPORTAL-3584 > URL: https://issues.jboss.org/browse/GTNPORTAL-3584 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Reporter: Juraci Paix?o Kr?hling > Assignee: Juraci Paix?o Kr?hling > > Due to changes into how PicketLink modules are organized, the JBoss Module for gatein-sso needs to be updated. See BZ 1205327 -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Wed Apr 8 02:48:19 2015 From: issues at jboss.org (Tuyen Nguyen The (JIRA)) Date: Wed, 8 Apr 2015 02:48:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3583) Picketlink IDM implementation does not implement GroupHandler#addChild() correctly In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3583?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tuyen Nguyen The updated GTNPORTAL-3583: ---------------------------------------- Status: Pull Request Sent (was: Open) Git Pull Request: https://github.com/gatein/gatein-portal/pull/935 > Picketlink IDM implementation does not implement GroupHandler#addChild() correctly > ---------------------------------------------------------------------------------- > > Key: GTNPORTAL-3583 > URL: https://issues.jboss.org/browse/GTNPORTAL-3583 > Project: GateIn Portal > Issue Type: Bug > Reporter: Tuyen Nguyen The > Assignee: Tuyen Nguyen The > > Api doc of GroupHandler#addChild() tell that an exception is thrown if the method fail to persist the new group or *there is already one child group with the same group name in the database* or any registered listener fail to handle the event. > But the IDM implementation does not throw exception when add new groupChild same name with existing one, it will update attribute of existing one to be the same new one. > And This test case is failure: > {code} > @Test > public void testAddDuplicateGroup() throws Exception { > /* Create a parent group with name is: GroupParent */ > String parentName = "testDuplicateGroup_GroupParent"; > Group groupParent = groupHandler_.createGroupInstance(); > groupParent.setGroupName(parentName); > groupParent.setDescription("This is description"); > groupHandler_.addChild(null, groupParent, true); > groupParent = groupHandler_.findGroupById(groupParent.getId()); > /* Create a child group with name: Group1 */ > Group groupChild1 = groupHandler_.createGroupInstance(); > groupChild1.setGroupName("testAddDuplicateGroup"); > groupChild1.setLabel("Group1 Label"); > groupHandler_.addChild(groupParent, groupChild1, true); > assertEquals(groupHandler_.findGroupById(groupChild1.getId()).getLabel(), "Group1 Label"); > try { > //. Add new group with same name > Group groupChild2 = groupHandler_.createGroupInstance(); > groupChild2.setGroupName("testAddDuplicateGroup"); > groupChild2.setLabel("Group2 Label"); > groupHandler_.addChild(groupParent, groupChild2, true); > fail("Exception should be thrown because group child is existing"); > } catch (Exception ex) { > } > assertEquals(groupHandler_.findGroupById(groupChild1.getId()).getLabel(), "Group1 Label"); > } > {code} > We should update IDM implementation of this method to align with the API doc. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Wed Apr 8 05:39:19 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Wed, 8 Apr 2015 05:39:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3578) Dependency org.apache.commons.io is not present in org.apache.commons.fileupload module In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13056838#comment-13056838 ] RH Bugzilla Integration commented on GTNPORTAL-3578: ---------------------------------------------------- Honza Fnukal changed the Status of [bug 1133873|https://bugzilla.redhat.com/show_bug.cgi?id=1133873] from ASSIGNED to ON_QA > Dependency org.apache.commons.io is not present in org.apache.commons.fileupload module > --------------------------------------------------------------------------------------- > > Key: GTNPORTAL-3578 > URL: https://issues.jboss.org/browse/GTNPORTAL-3578 > Project: GateIn Portal > Issue Type: Bug > Reporter: Lucas Ponce > Assignee: Lucas Ponce > Fix For: 3.9.0.Final, 3.8.14.Final > > -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Thu Apr 9 06:42:18 2015 From: issues at jboss.org (Tuyen Nguyen The (JIRA)) Date: Thu, 9 Apr 2015 06:42:18 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3585) [Datetime picker] Support broadcast "change" event when select Datetime from Datetime picker In-Reply-To: References: Message-ID: Tuyen Nguyen The created GTNPORTAL-3585: ------------------------------------------- Summary: [Datetime picker] Support broadcast "change" event when select Datetime from Datetime picker Key: GTNPORTAL-3585 URL: https://issues.jboss.org/browse/GTNPORTAL-3585 Project: GateIn Portal Issue Type: Enhancement Reporter: Tuyen Nguyen The Assignee: Tuyen Nguyen The Sometime, client want to use javascript to listen on "change" event of input date time field. This event is fired if user edit directly on input field. But if user select a date from date picker this event is not fired although the value of input field is changed. It's because when we set value of input field by javascript, there is no event raised. So, we should trigger "change" event after user choose a date from picker. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Thu Apr 9 06:45:21 2015 From: issues at jboss.org (Tuyen Nguyen The (JIRA)) Date: Thu, 9 Apr 2015 06:45:21 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3585) [Datetime picker] Support broadcast "change" event when select Datetime from Datetime picker In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3585?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Tuyen Nguyen The updated GTNPORTAL-3585: ---------------------------------------- Status: Pull Request Sent (was: Open) Git Pull Request: https://github.com/gatein/gatein-portal/pull/936 > [Datetime picker] Support broadcast "change" event when select Datetime from Datetime picker > -------------------------------------------------------------------------------------------- > > Key: GTNPORTAL-3585 > URL: https://issues.jboss.org/browse/GTNPORTAL-3585 > Project: GateIn Portal > Issue Type: Enhancement > Reporter: Tuyen Nguyen The > Assignee: Tuyen Nguyen The > > Sometime, client want to use javascript to listen on "change" event of input date time field. > This event is fired if user edit directly on input field. But if user select a date from date picker this event is not fired although the value of input field is changed. > It's because when we set value of input field by javascript, there is no event raised. > So, we should trigger "change" event after user choose a date from picker. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Mon Apr 13 02:27:18 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Mon, 13 Apr 2015 02:27:18 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3361) Allow more flexible cache-control header per portal In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3361?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13058219#comment-13058219 ] RH Bugzilla Integration commented on GTNPORTAL-3361: ---------------------------------------------------- Peter Palaga changed the Status of [bug 1072146|https://bugzilla.redhat.com/show_bug.cgi?id=1072146] from ASSIGNED to ON_QA > Allow more flexible cache-control header per portal > --------------------------------------------------- > > Key: GTNPORTAL-3361 > URL: https://issues.jboss.org/browse/GTNPORTAL-3361 > Project: GateIn Portal > Issue Type: Feature Request > Reporter: Juraci Paix?o Kr?hling > Assignee: Juraci Paix?o Kr?hling > Fix For: 3.7.0.Final > > > Allow each portal to have its own Cache-control directive, as per Bugzilla 811126 -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Mon Apr 13 05:11:19 2015 From: issues at jboss.org (Martin Weiler (JIRA)) Date: Mon, 13 Apr 2015 05:11:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3586) User related data not removed from the JCR tables on user deletion In-Reply-To: References: Message-ID: Martin Weiler created GTNPORTAL-3586: ---------------------------------------- Summary: User related data not removed from the JCR tables on user deletion Key: GTNPORTAL-3586 URL: https://issues.jboss.org/browse/GTNPORTAL-3586 Project: GateIn Portal Issue Type: Bug Components: Packaging Affects Versions: 3.8.2.Final Reporter: Martin Weiler User specific data (user site, aka dashboard) is not removed from the JCR tables when a user is deleted. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Mon Apr 13 05:22:19 2015 From: issues at jboss.org (Martin Weiler (JIRA)) Date: Mon, 13 Apr 2015 05:22:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3586) User related data not removed from the JCR tables on user deletion In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3586?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Martin Weiler updated GTNPORTAL-3586: ------------------------------------- Status: Pull Request Sent (was: Open) Git Pull Request: https://github.com/gatein/gatein-portal/pull/937 > User related data not removed from the JCR tables on user deletion > ------------------------------------------------------------------- > > Key: GTNPORTAL-3586 > URL: https://issues.jboss.org/browse/GTNPORTAL-3586 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Affects Versions: 3.8.2.Final > Reporter: Martin Weiler > > User specific data (user site, aka dashboard) is not removed from the JCR tables when a user is deleted. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Mon Apr 13 05:23:19 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Mon, 13 Apr 2015 05:23:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3586) User related data not removed from the JCR tables on user deletion In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3586?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated GTNPORTAL-3586: ----------------------------------------------- Bugzilla Update: Perform Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=1211157 > User related data not removed from the JCR tables on user deletion > ------------------------------------------------------------------- > > Key: GTNPORTAL-3586 > URL: https://issues.jboss.org/browse/GTNPORTAL-3586 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Affects Versions: 3.8.2.Final > Reporter: Martin Weiler > > User specific data (user site, aka dashboard) is not removed from the JCR tables when a user is deleted. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Mon Apr 13 07:57:18 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Mon, 13 Apr 2015 07:57:18 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3578) Dependency org.apache.commons.io is not present in org.apache.commons.fileupload module In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13058368#comment-13058368 ] RH Bugzilla Integration commented on GTNPORTAL-3578: ---------------------------------------------------- Tomas Kyjovsky changed the Status of [bug 1133873|https://bugzilla.redhat.com/show_bug.cgi?id=1133873] from ON_QA to ASSIGNED > Dependency org.apache.commons.io is not present in org.apache.commons.fileupload module > --------------------------------------------------------------------------------------- > > Key: GTNPORTAL-3578 > URL: https://issues.jboss.org/browse/GTNPORTAL-3578 > Project: GateIn Portal > Issue Type: Bug > Reporter: Lucas Ponce > Assignee: Lucas Ponce > Fix For: 3.9.0.Final, 3.8.14.Final > > -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 21 04:53:19 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 21 Apr 2015 04:53:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3586) User related data not removed from the JCR tables on user deletion In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3586?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13060890#comment-13060890 ] RH Bugzilla Integration commented on GTNPORTAL-3586: ---------------------------------------------------- Peter Palaga changed the Status of [bug 1211157|https://bugzilla.redhat.com/show_bug.cgi?id=1211157] from NEW to POST > User related data not removed from the JCR tables on user deletion > ------------------------------------------------------------------- > > Key: GTNPORTAL-3586 > URL: https://issues.jboss.org/browse/GTNPORTAL-3586 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Affects Versions: 3.8.2.Final > Reporter: Martin Weiler > > User specific data (user site, aka dashboard) is not removed from the JCR tables when a user is deleted. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 21 05:44:19 2015 From: issues at jboss.org (Peter Palaga (JIRA)) Date: Tue, 21 Apr 2015 05:44:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3587) Remove disabled users migration scripts from 3.8.x In-Reply-To: References: Message-ID: Peter Palaga created GTNPORTAL-3587: --------------------------------------- Summary: Remove disabled users migration scripts from 3.8.x Key: GTNPORTAL-3587 URL: https://issues.jboss.org/browse/GTNPORTAL-3587 Project: GateIn Portal Issue Type: Task Reporter: Peter Palaga Assignee: Peter Palaga Disabled users feature is not there in 3.8.x Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1209913 : "JBOSS_HOME/bin/migration" directory and "portal-disabledusers-migration.sh" file should be removed from portal packaging as there is no longer this option. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 21 05:44:19 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 21 Apr 2015 05:44:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3587) Remove disabled users migration scripts from 3.8.x In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3587?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] RH Bugzilla Integration updated GTNPORTAL-3587: ----------------------------------------------- Bugzilla Update: Perform Bugzilla References: https://bugzilla.redhat.com/show_bug.cgi?id=1209913 > Remove disabled users migration scripts from 3.8.x > -------------------------------------------------- > > Key: GTNPORTAL-3587 > URL: https://issues.jboss.org/browse/GTNPORTAL-3587 > Project: GateIn Portal > Issue Type: Task > Reporter: Peter Palaga > Assignee: Peter Palaga > > Disabled users feature is not there in 3.8.x > Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1209913 : > "JBOSS_HOME/bin/migration" directory and "portal-disabledusers-migration.sh" file should be removed from portal packaging as there is no longer this option. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 21 06:19:19 2015 From: issues at jboss.org (Peter Palaga (JIRA)) Date: Tue, 21 Apr 2015 06:19:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3586) User related data not removed from the JCR tables on user deletion In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3586?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Peter Palaga updated GTNPORTAL-3586: ------------------------------------ Status: Resolved (was: Pull Request Sent) Assignee: Peter Palaga Fix Version/s: 3.8.16.Final 3.9.0.Final Resolution: Done > User related data not removed from the JCR tables on user deletion > ------------------------------------------------------------------- > > Key: GTNPORTAL-3586 > URL: https://issues.jboss.org/browse/GTNPORTAL-3586 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Affects Versions: 3.8.2.Final > Reporter: Martin Weiler > Assignee: Peter Palaga > Fix For: 3.8.16.Final, 3.9.0.Final > > > User specific data (user site, aka dashboard) is not removed from the JCR tables when a user is deleted. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 21 06:20:19 2015 From: issues at jboss.org (Peter Palaga (JIRA)) Date: Tue, 21 Apr 2015 06:20:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3584) SSO packaging - PicketLink module reorganization In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3584?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Peter Palaga updated GTNPORTAL-3584: ------------------------------------ Status: Resolved (was: Pull Request Sent) Fix Version/s: 3.9.0.Final 3.8.16.Final Resolution: Done > SSO packaging - PicketLink module reorganization > ------------------------------------------------ > > Key: GTNPORTAL-3584 > URL: https://issues.jboss.org/browse/GTNPORTAL-3584 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Reporter: Juraci Paix?o Kr?hling > Assignee: Juraci Paix?o Kr?hling > Fix For: 3.9.0.Final, 3.8.16.Final > > > Due to changes into how PicketLink modules are organized, the JBoss Module for gatein-sso needs to be updated. See BZ 1205327 -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 21 06:20:19 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 21 Apr 2015 06:20:19 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3586) User related data not removed from the JCR tables on user deletion In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3586?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13060940#comment-13060940 ] RH Bugzilla Integration commented on GTNPORTAL-3586: ---------------------------------------------------- Peter Palaga changed the Status of [bug 1211157|https://bugzilla.redhat.com/show_bug.cgi?id=1211157] from POST to MODIFIED > User related data not removed from the JCR tables on user deletion > ------------------------------------------------------------------- > > Key: GTNPORTAL-3586 > URL: https://issues.jboss.org/browse/GTNPORTAL-3586 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Affects Versions: 3.8.2.Final > Reporter: Martin Weiler > Assignee: Peter Palaga > Fix For: 3.9.0.Final, 3.8.16.Final > > > User specific data (user site, aka dashboard) is not removed from the JCR tables when a user is deleted. -- This message was sent by Atlassian JIRA (v6.3.11#6341) From issues at jboss.org Tue Apr 21 08:28:33 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Tue, 21 Apr 2015 08:28:33 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3587) Remove disabled users migration scripts from 3.8.x In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3587?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13061015#comment-13061015 ] RH Bugzilla Integration commented on GTNPORTAL-3587: ---------------------------------------------------- Peter Palaga changed the Status of [bug 1209913|https://bugzilla.redhat.com/show_bug.cgi?id=1209913] from ASSIGNED to MODIFIED > Remove disabled users migration scripts from 3.8.x > -------------------------------------------------- > > Key: GTNPORTAL-3587 > URL: https://issues.jboss.org/browse/GTNPORTAL-3587 > Project: GateIn Portal > Issue Type: Task > Reporter: Peter Palaga > Assignee: Peter Palaga > > Disabled users feature is not there in 3.8.x > Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1209913 : > "JBOSS_HOME/bin/migration" directory and "portal-disabledusers-migration.sh" file should be removed from portal packaging as there is no longer this option. -- This message was sent by Atlassian JIRA (v6.3.15#6346) From issues at jboss.org Fri Apr 24 06:59:52 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Fri, 24 Apr 2015 06:59:52 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3578) Dependency org.apache.commons.io is not present in org.apache.commons.fileupload module In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13062373#comment-13062373 ] RH Bugzilla Integration commented on GTNPORTAL-3578: ---------------------------------------------------- Honza Fnukal changed the Status of [bug 1133873|https://bugzilla.redhat.com/show_bug.cgi?id=1133873] from ASSIGNED to ON_QA > Dependency org.apache.commons.io is not present in org.apache.commons.fileupload module > --------------------------------------------------------------------------------------- > > Key: GTNPORTAL-3578 > URL: https://issues.jboss.org/browse/GTNPORTAL-3578 > Project: GateIn Portal > Issue Type: Bug > Reporter: Lucas Ponce > Assignee: Lucas Ponce > Fix For: 3.9.0.Final, 3.8.14.Final > > -- This message was sent by Atlassian JIRA (v6.3.15#6346) From issues at jboss.org Fri Apr 24 09:37:53 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Fri, 24 Apr 2015 09:37:53 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3587) Remove disabled users migration scripts from 3.8.x In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3587?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13062460#comment-13062460 ] RH Bugzilla Integration commented on GTNPORTAL-3587: ---------------------------------------------------- Honza Fnukal changed the Status of [bug 1209913|https://bugzilla.redhat.com/show_bug.cgi?id=1209913] from MODIFIED to ON_QA > Remove disabled users migration scripts from 3.8.x > -------------------------------------------------- > > Key: GTNPORTAL-3587 > URL: https://issues.jboss.org/browse/GTNPORTAL-3587 > Project: GateIn Portal > Issue Type: Task > Reporter: Peter Palaga > Assignee: Peter Palaga > > Disabled users feature is not there in 3.8.x > Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1209913 : > "JBOSS_HOME/bin/migration" directory and "portal-disabledusers-migration.sh" file should be removed from portal packaging as there is no longer this option. -- This message was sent by Atlassian JIRA (v6.3.15#6346) From issues at jboss.org Fri Apr 24 09:37:53 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Fri, 24 Apr 2015 09:37:53 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3586) User related data not removed from the JCR tables on user deletion In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3586?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13062461#comment-13062461 ] RH Bugzilla Integration commented on GTNPORTAL-3586: ---------------------------------------------------- Honza Fnukal changed the Status of [bug 1211157|https://bugzilla.redhat.com/show_bug.cgi?id=1211157] from MODIFIED to ON_QA > User related data not removed from the JCR tables on user deletion > ------------------------------------------------------------------- > > Key: GTNPORTAL-3586 > URL: https://issues.jboss.org/browse/GTNPORTAL-3586 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Affects Versions: 3.8.2.Final > Reporter: Martin Weiler > Assignee: Peter Palaga > Fix For: 3.9.0.Final, 3.8.16.Final > > > User specific data (user site, aka dashboard) is not removed from the JCR tables when a user is deleted. -- This message was sent by Atlassian JIRA (v6.3.15#6346) From issues at jboss.org Mon Apr 27 12:01:06 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Mon, 27 Apr 2015 12:01:06 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3578) Dependency org.apache.commons.io is not present in org.apache.commons.fileupload module In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13062927#comment-13062927 ] RH Bugzilla Integration commented on GTNPORTAL-3578: ---------------------------------------------------- Tomas Kyjovsky changed the Status of [bug 1133873|https://bugzilla.redhat.com/show_bug.cgi?id=1133873] from ON_QA to VERIFIED > Dependency org.apache.commons.io is not present in org.apache.commons.fileupload module > --------------------------------------------------------------------------------------- > > Key: GTNPORTAL-3578 > URL: https://issues.jboss.org/browse/GTNPORTAL-3578 > Project: GateIn Portal > Issue Type: Bug > Reporter: Lucas Ponce > Assignee: Lucas Ponce > Fix For: 3.9.0.Final, 3.8.14.Final > > -- This message was sent by Atlassian JIRA (v6.3.15#6346) From issues at jboss.org Mon Apr 27 12:02:55 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Mon, 27 Apr 2015 12:02:55 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3587) Remove disabled users migration scripts from 3.8.x In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3587?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13062929#comment-13062929 ] RH Bugzilla Integration commented on GTNPORTAL-3587: ---------------------------------------------------- Tomas Kyjovsky changed the Status of [bug 1209913|https://bugzilla.redhat.com/show_bug.cgi?id=1209913] from ON_QA to VERIFIED > Remove disabled users migration scripts from 3.8.x > -------------------------------------------------- > > Key: GTNPORTAL-3587 > URL: https://issues.jboss.org/browse/GTNPORTAL-3587 > Project: GateIn Portal > Issue Type: Task > Reporter: Peter Palaga > Assignee: Peter Palaga > > Disabled users feature is not there in 3.8.x > Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1209913 : > "JBOSS_HOME/bin/migration" directory and "portal-disabledusers-migration.sh" file should be removed from portal packaging as there is no longer this option. -- This message was sent by Atlassian JIRA (v6.3.15#6346) From issues at jboss.org Mon Apr 27 13:06:52 2015 From: issues at jboss.org (RH Bugzilla Integration (JIRA)) Date: Mon, 27 Apr 2015 13:06:52 -0400 (EDT) Subject: [gatein-issues] [JBoss JIRA] (GTNPORTAL-3586) User related data not removed from the JCR tables on user deletion In-Reply-To: References: Message-ID: [ https://issues.jboss.org/browse/GTNPORTAL-3586?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13062959#comment-13062959 ] RH Bugzilla Integration commented on GTNPORTAL-3586: ---------------------------------------------------- Tomas Kyjovsky changed the Status of [bug 1211157|https://bugzilla.redhat.com/show_bug.cgi?id=1211157] from ON_QA to VERIFIED > User related data not removed from the JCR tables on user deletion > ------------------------------------------------------------------- > > Key: GTNPORTAL-3586 > URL: https://issues.jboss.org/browse/GTNPORTAL-3586 > Project: GateIn Portal > Issue Type: Bug > Components: Packaging > Affects Versions: 3.8.2.Final > Reporter: Martin Weiler > Assignee: Peter Palaga > Fix For: 3.9.0.Final, 3.8.16.Final > > > User specific data (user site, aka dashboard) is not removed from the JCR tables when a user is deleted. -- This message was sent by Atlassian JIRA (v6.3.15#6346)