[Zope-Annce] Plone Bootcamps: Upcoming Training in Bangalore, Houston Seattle

2007-02-09 Thread Joel Burton
PloneBootcamps provides the classic Plone Developer Bootcamp. This 5 day, 
hands-on, expert-led training has been described as required learning 
and incredibly helpful by almost a thousand former students.

We offer our courses at a low cost, to ensure that they are affordable to 
everyone. We also give back to local Zope/Plone user groups--together, we and 
our students have given over $5,000 back to help build and sustain these 
groups.

Three new bootcamps have been added to our schedule for 2007:

- BANGALORE (KARNATAKA, INDIA): March 12-16 (5 days), $200 US

- SEATTLE: April 9-13 (5 days), $450 US

- HOUSTON: April 16-20 (5 days), $450 US

All three are the classic developer bootcamp, which covers everything you need 
to know to use and design Plone sites. We cover power tricks, Archetypes, 
skinning, caching, and deployment.

All three classes are led by Joel Burton 
(http://plonebootcamps.com/about/joel-burton).

Details on all of these classes are at http://plonebootcamps.com/courses

If you'd like to get notified when we offer new courses, please sign up for 
our low-volume, spam-free announcement list at 
http://plonebootcamps.com/about/announce

- j.

-- 
Joel Burton - [EMAIL PROTECTED]
Zope/Plone  Knowledge Management Consultant
Quality Plone Training: http://plonebootcamps.com
Founding Member/Former Board, Plone Foundation: http://plone.org/foundation
--
___
Zope-Announce maillist  -  Zope-Announce@zope.org
http://mail.zope.org/mailman/listinfo/zope-announce

  Zope-Announce for Announcements only - no discussions

(Related lists - 
 Users: http://mail.zope.org/mailman/listinfo/zope
 Developers: http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope-dev] pdb list command

2003-07-02 Thread Joel Burton
On Wed, Jul 02, 2003 at 12:41:47AM -0400, Rodman, Gerry wrote:
 When debugging a script using pdb the (l)ist  command which is supposed
 to show me the lines surrounding the current execution point does not
 workit just shows me the EOF message without any lines.

zope-dev is really for discussions about the development of Zope as a
product, not question about using Zope or developing in Zope, btw.

Your problem is caused by the restricted environment in which Zope
executes PythonScripts. I solve this problem by just using Boa
Constructor, a Python IDE that has debugging support for PythonScripts
built in. Not sure if there's a fix that would let you use stock,
text-based pdb.

 - j.

-- 

Joel BURTON  |  [EMAIL PROTECTED]  |  joelburton.com  |  aim: wjoelburton
Independent Knowledge Management Consultant

___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://mail.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope )


[Zope] Dymanic sort=dtml-a_dtml_var; in DTML?

2000-10-17 Thread Joel Burton

I'd like to create a DTML method that lists objects, sorting either by 
name or modified-date. I know I can do this by:

dtml-if ..byname...
   dtml-in blah sort="title_or_id"
   ...
/dtml-else
   dtml-in balh sort="bobobase_modification_time"
   ...
/dtml-if


However, this requires lots of code. I'm trying to do it like this:


Sorted by dtml-sortby;  !-- for debugging --

dtml-in objectValues sort="dtml-sortby;"
  dtml-var title_or_id (dtml-var bobobase_modification_time)
/dtml-in


I have a property, sortby, of the enclosing folder set to 
"bobobase_modification_time"; when this method is called, it 
dutifully reports that sortby=b_m_t; however, it doesn't sort things 
this way (I can't tell exactly how it is sorting them, and when I 
refresh, the order occasionally changes.)

Any ideas?

--
Joel Burton, Director of Information Systems -*- [EMAIL PROTECTED]
Support Center of Washington (www.scw.org)

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )