Steve McMahon | 12 Oct 2006 23:58
Gravatar

Re: [PloneDavis-Discuss] archetype as the default page

Using the ZMI: portal_properties/site_properties . Look for 
default_page_types.

Typically, Extensions/Install.py would set this up with code like (from 
RichDocument):

     siteProperties = getattr(propsTool, 'site_properties')

     # Add to default_page_types
     defaultPageTypes = 
list(siteProperties.getProperty('default_page_types'))
     if 'RichDocument' not in defaultPageTypes:
         defaultPageTypes.append('RichDocument')
     siteProperties.manage_changeProperties(default_page_types = 
defaultPageTypes)

Charles McLaughlin wrote:
> I'm sure I've read how to do this, but I can't remember where.
> 
> I created an archetype, but when I try to "change content item as 
> default view" it isn't in the list.  Where can I add my archetype to the 
> list of allowed types?
> 
> Thanks,
> Charles
> 

--

-- 
______________________________________________________

(Continue reading)

Charles McLaughlin | 12 Oct 2006 23:42
Picon

[PloneDavis-Discuss] archetype as the default page

I'm sure I've read how to do this, but I can't remember where.

I created an archetype, but when I try to "change content item as 
default view" it isn't in the list.  Where can I add my archetype to the 
list of allowed types?

Thanks,
Charles

--

-- 
Charles McLaughlin
Department of Sociology
University of California, Davis
Steve McMahon | 17 Oct 2006 23:20
Gravatar

[PloneDavis-Discuss] Plans For Next Meeting

Hi Davis-Area Zope/Plone Users,

When would you next like to meet? I'd like to propose noonish, Thursday, 
November 9th. Discussion welcome.

And, who's headed for Seattle? Last I heard, Charles McLaughlin, Davis 
Siedband and myself were heading North.

Steve

--

-- 
______________________________________________________

Steve McMahon
Reid-McMahon, LLC
steve@...
steve@...
Charles McLaughlin | 18 Oct 2006 02:24
Picon

Re: [PloneDavis-Discuss] Plans For Next Meeting

Steve McMahon wrote:
> Hi Davis-Area Zope/Plone Users,
> 
> When would you next like to meet? I'd like to propose noonish, Thursday, 
> November 9th. Discussion welcome.
> 
> And, who's headed for Seattle? Last I heard, Charles McLaughlin, Davis 
> Siedband and myself were heading North.

Brian Gingold from the UCD Human and Community Development department is 
also going to the conference, although I don't think he is subscribed to 
this list.

Charles
Charles McLaughlin | 19 Oct 2006 20:59
Picon

[PloneDavis-Discuss] Member Search

Hi,

I wrote a script for adding Plone users and creating member folders 
based on information I have stored in a MySQL database  However, members 
don't show up in searches until their initial login.  How can I fix that?

Thanks,
Charles

--

-- 
Charles McLaughlin
Department of Sociology
University of California, Davis
Steve McMahon | 19 Oct 2006 21:23
Gravatar

Re: [PloneDavis-Discuss] Member Search

Hi Charles,

My guess is that you need to have your script create their member 
folders -- which is ordinarily done automatically on first login. See 
the portal_membership tool, createMemberarea method.

Steve

Charles McLaughlin wrote:
> Hi,
> 
> I wrote a script for adding Plone users and creating member folders 
> based on information I have stored in a MySQL database  However, members 
> don't show up in searches until their initial login.  How can I fix that?
> 
> Thanks,
> Charles
> 

--

-- 
______________________________________________________

Steve McMahon
Reid-McMahon, LLC
steve@...
steve@...
Charles McLaughlin | 20 Oct 2006 00:33
Picon

Re: [PloneDavis-Discuss] Member Search

Steve,

Thanks for the suggestion.  I was able to figure it out.  Setting the 
last_login_time member attribute to today's date did the trick.

Thanks,
Charles

Steve McMahon wrote:
> Hi Charles,
> 
> My guess is that you need to have your script create their member 
> folders -- which is ordinarily done automatically on first login. See 
> the portal_membership tool, createMemberarea method.
> 
> Steve
> 
> Charles McLaughlin wrote:
>> Hi,
>>
>> I wrote a script for adding Plone users and creating member folders 
>> based on information I have stored in a MySQL database  However, members 
>> don't show up in searches until their initial login.  How can I fix that?
>>
>> Thanks,
>> Charles
>>
> 

--

-- 
(Continue reading)

Matthew Lange | 20 Oct 2006 01:12
Picon

Re: [PloneDavis-Discuss] Member Search

Charles,

Is this set-up as a single sign-on system?  If so, does this mean you have
to store your members' passwords in your db in the clear?

Best.

mcl

> -----Original Message-----
> From: zugod-discuss-bounces@... [mailto:zugod-
> discuss-bounces@...] On Behalf Of Charles
> McLaughlin
> Sent: Thursday, October 19, 2006 3:33 PM
> To: Zope/Plone Users' Group of Davis Discussion
> Subject: Re: [PloneDavis-Discuss] Member Search
> 
> Steve,
> 
> Thanks for the suggestion.  I was able to figure it out.  Setting the
> last_login_time member attribute to today's date did the trick.
> 
> Thanks,
> Charles
> 
> Steve McMahon wrote:
> > Hi Charles,
> >
> > My guess is that you need to have your script create their member
> > folders -- which is ordinarily done automatically on first login. See
(Continue reading)

Charles McLaughlin | 20 Oct 2006 01:34
Picon

Re: [PloneDavis-Discuss] Member Search

Matt,

I'm planning on using CAS logins, so the password doesn't matter - I set 
a random password upon account creation.  I don't have any passwords in 
my MySQL database, it is more of a directory then an account repository. 
  I already have the users email address, location, office hours and 
phone# in MySQL and sync'ing that up with corresponding memberdata fields.

Charles

Matthew Lange wrote:
> Charles,
> 
> Is this set-up as a single sign-on system?  If so, does this mean you have
> to store your members' passwords in your db in the clear?
> 
> Best.
> 
> mcl
> 
>> -----Original Message-----
>> From: zugod-discuss-bounces@... [mailto:zugod-
>> discuss-bounces@...] On Behalf Of Charles
>> McLaughlin
>> Sent: Thursday, October 19, 2006 3:33 PM
>> To: Zope/Plone Users' Group of Davis Discussion
>> Subject: Re: [PloneDavis-Discuss] Member Search
>>
>> Steve,
>>
(Continue reading)


Gmane