plonewars.com

June 23rd, 2007

Send2Wiki — COSL

Send2Wiki makes it easy for people to take open materials and move them into a wiki for easy creation of derivative works. Send2Wiki will convert both HTML and PDF into the wiki, provide an option of piping the content through Google Labs translation tool

Send2Wiki — COSL

Originally from del.icio.us/tag/plone by liquid_


from Yoda http://plonewars.com/2007/06/23/send2wiki-%e2%80%94-cosl/







June 23rd, 2007

http://demo.educommons.usu.edu/

This is a demo instance of eduCommons 2.3.0. It will reset itself every 24 hours, so any content created here will be deleted.

http://demo.educommons.usu.edu/

Originally from del.icio.us/tag/plone by liquid_


from Yoda http://plonewars.com/2007/06/23/httpdemoeducommonsusuedu/







June 23rd, 2007

Vaga de est¡gio para Webdesign em ambiente Plone no DF

para ¡rio de com esperiªncia em (imprescind­vel), e afins e conhecimento de /zope (desej¡vel), para projeto de p¡ginas de intranet e internet da procuradoria da repºblica no df. per­odo vespertino – 4 horas di¡rias – 20 horas semanais, em bras­lia – df. interessados, entrar em contato no e-mail rogeriolθprdf.mpf.gov.br com o assunto “gi…

Vaga de est¡gio para Webdesign em ambiente Plone no DF

Originally from Freshest blog posts on plone by Sistemas – OrangEye.com


from Yoda http://plonewars.com/2007/06/23/vaga-de-est%c2%a1gio-para-webdesign-em-ambiente-plone-no-df/







June 23rd, 2007

Web Application Developer LAMP – Consumer Health Info Startup at MovingHealth (Cambridge, MA / …

is a new venture-backed startup creating the next generation of people-powered consumer-facing online health information website. we are located in cambridge and we are looking for talented and energetic developers for building our web engineering team. we are currently looking for web application engineers with experience in the following areas: * 2+ years of web applicatio…

Web Application Developer LAMP – Consumer Health Info Startup at MovingHealth (Cambridge, MA / …

Originally from Freshest blog posts on plone by jobs.joelonsoftware.com


from Yoda http://plonewars.com/2007/06/23/web-application-developer-lamp-consumer-health-info-startup-at-movinghealth-cambridge-ma/







June 23rd, 2007

Erik Forsberg’s Own Domain — efod.se

Erik Forsberg’s Own Domain — efod.se

Originally from del.icio.us/tag/plone by reynard71


from Yoda http://plonewars.com/2007/06/23/erik-forsbergs-own-domain-%e2%80%94-efodse/







June 23rd, 2007

Top Twenty Plone Pitfalls — Plone CMS: Open Source Content Management

Top Twenty Plone Pitfalls — Plone CMS: Open Source Content Management

Originally from del.icio.us/tag/plone by metaquasi


from Yoda http://plonewars.com/2007/06/23/top-twenty-plone-pitfalls-%e2%80%94-plone-cms-open-source-content-management/







June 23rd, 2007

Sidnei da Silva: Google SoC: Status Report 1

And now for something completely different. A *video* status report of the initial steps on my Google SoC project. I hope you enjoy it. You can find full video transcript below.

Hi, my name is Sidnei da Silva, and I’m participating on the Google Summer of Code Program as a Student.

My mentor is Mr. Lennart Regebro, and my mentoring organization is the Plone Foundation, and this is my first Video Status Report for the Google SoC Program.

My Summer of Code project goes by the title of “Improved out-of-the-box WebDAV experience”, and this first phase on the project is extremely important to reach that goal. More on that in a second.

First, a little bit of background.

What is Plone?

  • Plone is a really powerful and agile Content Management System
  • It’s based on a series of technologies on top of the Zope Application Server
  • Which is written in the Python Programming Language

What is Zope?

  • It’s the Z Object Publishing Environment

I’m not sure why “Z”, of all letters, was chosen. It’s the last letter of the alphabet! Oh, well. Maybe they felt sad because of that and gave Mr. “Z” a chance.

Anyway, the idea is that you deal with Objects, which are persisted in the ZODB (which stands for the Z Object Database) in an hierarchical fashion. I won’t go into much detail there. So you have Objects, and they are Published through several different “channels”.

Out-of-the-box, Zope ships with a couple different publishing channels that work with little to no configuration: HTTP, WebDAV, FTP and XML-RPC. You can access pretty much any standard Zope Object through any one of those channels.

My personal interest is in accessing and manipulating Zope (and specially Plone) Objects through WebDAV, and having that work with minimal configuration.

Historically, Zope’s WebDAV implementation has worked just fine, though very few people use it. However, as it started getting old, and no one was very interested in maintaining it, things started to fall apart.

The most notable issue was that Windows Web Folders implementation stopped working with Zope, after someone that had problems with it decided that it was easier to just rip out any support for Windows Web Folders than to actually find a solution to the problem.

Thus, my first Summer of Code task was born: making Windows Web Folders work with Zope again, which as a side effect will allow us to use Windows Web Folders with Plone.

A good chunk of the job had already been done by a good soul with the handle “PatrickD”. If you’re looking at this report Patrick, thank you a lot.

Patrick did a great job looking for a solution to the problem, and going back and forth discussing the best way to implement it with the Zope developers, and eventually submitting a patch nearly one year ago, for this issue which is almost 35 months old as of today. The whole history on this issue can be found on the Zope Collector issue 1441. The issue title might give you an idea of how much some Zope Developers care about Windows support.

My task consisted of researching a little bit more on the subject, polishing Patrick’s patch a tad and writing some unit tests for it.

Patrick came to the conclusion that the lack of a “MS-Author-Via: DAV” header in the WebDAV OPTIONS response was what prevented Microsoft Web Folders from properly connecting to Zope. And he was right, in part. That was really the case with the version of Web Folders that was current at the time.

However, Microsoft issued an update in January 2005, and a second update in May 2007 to the Web Folders implementation. The latest update adds support for WebDAV connections over SSL, by using the “https” url scheme. With those updates, they also removed the requirement for the “MS-Author-Via: DAV” header, but now require the presence of a header named “Public:” which lists the WebDAV methods that are available globally across all resources in the server.

Now I’m going to demonstrate the issue, how Microsoft Web Folders fails to connect to Zope, and after enabling the new feature through Zope’s configuration file, how it is then able to successfully connect to Zope.

[Demo]

Those changes should be available in the Zope Version Control Repository by the time you see this. I would like to ask everyone interested in having a properly working WebDAV in Plone and Zope to make suggestions and requests on PLIP (Plone Improvement Proposal) 187, which tracks the status and plans for this Summer of Code work.

I would like to thank Google for allowing me to work on this project, my mentor Lennart for the prodding, and the great Alexander Limi for the motivation and coming up with ideas.

Blogged with Flock

Sidnei da Silva: Google SoC: Status Report 1

Originally from Planet Plone by sidnei


from Yoda http://plonewars.com/2007/06/23/sidnei-da-silva-google-soc-status-report-1/







June 23rd, 2007

Google SoC: Status Report 1

Google SoC: Status Report 1 No Comments And now for something completely different … organization is the Plone Foundation, and this is my first Video Status Report for the Google SoC … . More on that in a second. First, a little bit of background. What is Plone? Plone is a really powerful and agile

Google SoC: Status Report 1

Originally from [Technorati] Tag results for plone


from Yoda http://plonewars.com/2007/06/23/google-soc-status-report-1/







June 23rd, 2007

Updates and important items from around our National Network — FOE Intranet

Updates and important items from around our National Network — FOE Intranet

Originally from del.icio.us/tag/plone by bbos


from Yoda http://plonewars.com/2007/06/23/updates-and-important-items-from-around-our-national-network-%e2%80%94-foe-intranet/







June 23rd, 2007

New eduCommons Documentation and Screencasts Now Available

Seth Gurell, a graduate student at Utah State University, has created a collection of screencasts on how to use eduCommons. They short segments include explanations such as uploading a zip file, adding an image, and understanding workflow roles. These screencasts are available as part of the new eduCommons documentation section.

New eduCommons Documentation and Screencasts Now Available

Originally from [Technorati] Tag results for plone


from Yoda http://plonewars.com/2007/06/23/new-educommons-documentation-and-screencasts-now-available/