473,385 Members | 1,357 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Zope/Plone - Is it the right solution?

Hi everyone,
I am currently a student, and for our HCI class project we are
redeveloping our CS website. I attend a very large university (around
30,000 students), and the CS site will need to be updated by many
people that don't have technical skills (like clerical staff).

The biggest problem with the current site is that not enough people
have access to update it. Since I love python, these seemed like
viable solutions.

1) Is Zope/Plone overkill for this type of project?

2) Why use Plone vs. straight up Zope?

3) Is there a way to get over the steep learning curves (that I have
read about)?

Feb 21 '06 #1
11 1438
You may want to look at either of the popular frameworks, TurboGears
http://www.turbogears.org/ or Django http://www.djangoproject.com/

I have very little experience with both, but I decided to try learning
the Django framework after watching the Snakes and Rubies videos. (See
http://www.djangoproject.com/snakesandrubies/ ) I am working my way
through the Django tutorials and am very impressed and looking forward
to deploying it on my own site. The admin interface that you get
basically "free" is a very slick touch, especially with all the
widgets. My recommendation is to check out Django's admin interface
(see Adrian Holovaty's presentation of Django in Snakes and Rubies and
http://www.djangoproject.com/documentation/tutorial2/ ) and see if that
won't do the trick for allowing easy content contribution without the
contributors having to know any of the Python, HTML, or CSS behind the
pages.

Chris

Feb 21 '06 #2
"kbperry" wrote:
I am currently a student, and for our HCI class project we are
redeveloping our CS website. I attend a very large university (around
30,000 students), and the CS site will need to be updated by many
people that don't have technical skills (like clerical staff).

The biggest problem with the current site is that not enough people
have access to update it. Since I love python, these seemed like
viable solutions.

1) Is Zope/Plone overkill for this type of project?

2) Why use Plone vs. straight up Zope?

3) Is there a way to get over the steep learning curves (that I have
read about)?


do you want to build a web application, use a ready-made CMS, or is the goal to
easily get lots of information on to the (intra)web ?

if the latter, a modern wiki with good access control could be worth investigating:

http://moinmoin.wikiwikiweb.de/
http://moinmoin.wikiwikiweb.de/HelpOnAccessControlLists

(for performance, you may want to run the wiki behind mod_proxy)

if you want a ready-made content management system, pick Plone.

if you want to build your own web application, you know Python reasonably
well, you don't want much of a learning curve, and you want to start right now,
pick Django.

(I'm now leaving the microphone to the "pick me pick me!" crowd ;-)

</F>

Feb 21 '06 #3
Well,
I guess our main goal in this class is to improve usability and user
experiences at the site.

While we want to improve our site visually and make it more usable to
the prospective students, the site needs to be easily updated. I don't
think that I am looking for a wiki.

I will definitely check out Django and turbogears.

Thanks a ton for the info!

Feb 21 '06 #4
It depends on how much time do you want to spend fighting with the
framework.
I usually do not recommend Zope, unless you want to make a career as a
Zope
consultant. If you have to interact with a relational database, your
life with Zope
may be hard: http://www.jrandolph.com/blog/?p=23

For easy of use nothing beats CherryPy, but I am not sure how stable it
is.
Quixote is nice and small, and pretty easy to use too.
Many likes Django and TurboGears.

Zope and Twisted are for people who have a lot of time to invest.

Michele Simionato

Feb 21 '06 #5
Michele Simionato:
I usually do not recommend Zope, unless you want to make a career as a
Zope consultant.
You have a point there.
If you have to interact with a relational database, your life with Zope
may be hard:


And if you have to interact with flat files, your life with an RDBMS may
be hard. Zope contains a full-fledged post-relational object database
called ZODB.

The time it took me to learn to program with it (outside of Zope) is less
than 1% of the time I've spent learning the relational model and SQL.

Get your data out of those silly rows and columns, and put it in
first-class objects!

--
René Pijlman
Feb 21 '06 #6
kbperry wrote:
I attend a very large university (around
30,000 students), and the CS site will need to be updated by many
people that don't have technical skills (like clerical staff).

That is exactly the kind of thing Plone is good at. A good match I would
say.

Check out http://plone.org/documentation/faq

The answers to your other questions can be found there.
Feb 21 '06 #7
Rene Pijlman wrote:
Get your data out of those silly rows and columns, and put it in
first-class objects!


Well, there are pros and contras in the choice of a relational database
vs an object
database. Most of the time, there is no choice, since you have a legacy
relation
database to work with. Also, there are many cases where a relational DB
is the
right choice. So I would say that most of the times one has to do with
relational DBs
anyway, so it is a good investement to learn them. The ZODB is easy to
use,
but when it gives errors, it is not obvious at all to understand what
is happening.

Michele Simionato

Feb 21 '06 #8
kbperry:
1) Is Zope/Plone overkill for this type of project?
No, Plone is an excellent CMS for your purpose.
2) Why use Plone vs. straight up Zope?
Plone is an out-of-the-box CMS for non-technical editors, Zope is the
underlying infrastructure for developers.
3) Is there a way to get over the steep learning curves (that I have
read about)?


There is a steep learning curve when you need to develop custom content
types, application code, integrate other databases and so on.

But when all you want is a CMS for a community-type website, Plone is
fine. I recommend this book, it probably contains all you need to know:
http://plone.org/documentation/manual/definitive-guide
(it's available as web pages and on dead tree as well)

--
René Pijlman
Feb 21 '06 #9
Fredrik Lundh wrote:
"kbperry" wrote:
I am currently a student, and for our HCI class project we are
redeveloping our CS website. I attend a very large university (around
30,000 students), and the CS site will need to be updated by many
people that don't have technical skills (like clerical staff).

The biggest problem with the current site is that not enough people
have access to update it. Since I love python, these seemed like
viable solutions.

1) Is Zope/Plone overkill for this type of project?

2) Why use Plone vs. straight up Zope?

3) Is there a way to get over the steep learning curves (that I have
read about)?


do you want to build a web application, use a ready-made CMS, or is the goal to
easily get lots of information on to the (intra)web ?

if the latter, a modern wiki with good access control could be worth investigating:

http://moinmoin.wikiwikiweb.de/
http://moinmoin.wikiwikiweb.de/HelpOnAccessControlLists

(for performance, you may want to run the wiki behind mod_proxy)

if you want a ready-made content management system, pick Plone.


I'd heartily agree with Fredrik on this.. If you just want to manage a
set of interlinked documents (i.e. content oriented web pages) then a
wiki will get you going and contributors updating stuff faster than
pretty much anything going.

Plone will give you more structure (allow you to create your own types
of conten or object e.g. courses, buildings, whatever) with more effort
and more maintenance.

Rolling your own with any framework out there will inevitably give you
the most flexibility (you can do pretty much what you want) traded off
against a lot larger investment in time at the start and ongoing.

If you want it to be a project, there isn't much to get your teeth into
in creating a wiki based site (you can write you own modules and
plug-ins I suppose). Plone/Zope3 would challenge you more and you'd have
a chance to learn some different approaches to common cs problems.

If I were to recommend based on you wanting a project, I'd say zope3. If
it's based on getting some content up and editable quickly then I'd say
wiki. If you're aiming for a structured website to handle some of the
typical course info (handling events, rooms, dates, etc) I'd recommend
plone.

Tim Parkin

p.s. The steep learning curve should only be if you want to do something
to 'extend' the plone/zope system. As long as you are happy with the
defaults for common components you shouldn't have too much to learn.
Feb 21 '06 #10
Rene and Tim,
Thanks for the help! I am glad that I didn't rule out Plone yet
because I was able to download and install quickly. My "site" was up
and running very quickly.

For this class we are more focused on the HCI/usability stuff than we
are the coding. I have plenty of other classes that focus on the
coding. I am hoping that we could build an extension or two using
python (if needed), and I would like to completely redesign the main
"skin," but other than that I need the CMS tool so Plone looks like a
great fit.

I tried installing Zope last night, but when I did, I couldn't find out
how to even start it for about an hour after searching. I was worried
that if I went the Plone/Zope route, then I would need to know both.
It looks like Plone just makes Zope much easier to work with.

Feb 21 '06 #11
kbperry a écrit :
Well,
I guess our main goal in this class is to improve usability and user
experiences at the site.

While we want to improve our site visually and make it more usable to
the prospective students, the site needs to be easily updated. I don't
think that I am looking for a wiki.


Don't overlook this solution. A wiki can be made good-looking, and you
just can't beat it when it comes to ease of use for non-technical
persons (and for technical persons too...). Modern wikis like MoinMoin
or the Wiki part of Trac are also very extensibles.

For the record, for our own extranet, we're actually switching from CPS
(a very-close-to-Plone CMF) to... Trac - there's not even a subversion
repository around, but we use the Wiki/Ticket/Roadmap combo to manage
our current projects.

Now Plone is a pretty good CMS for Portal-like sites, so it may be what
you're looking for...
Feb 21 '06 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Kyler Laird | last post by:
I'm trying to use Plone again. I do this every few months and usually drop it after a few days. I keep getting a little closer though. I'm documenting one of my attempts to make Plone more...
11
by: mir nazim | last post by:
hi, i m planning to start writing intranet applications and want ur real cool advices for choosing the correct platform. the choice is between the three: 1. Twisted 2. Medusa 3. Zope (i do...
3
by: Andrzej Mleczko | last post by:
Hi I'm searching for an open-source, free Intranet solutions in Zope.
0
by: Joel Burton | last post by:
After a hiatus, a new group for Python, Zope, and Plone programmers in DC is forming. Our goal is to network and further educate ourselves on programming in Python. While not exclusively for Zope...
0
by: Joel Burton | last post by:
The newly-formed Zope/Python Users Group of DC announces our upcoming meeting schedule: Mo Jul 19: Zope -- presentation on Archetypes by Joel Burton Th Aug 5: Python -- no topic yet Mo Aug...
4
by: Avery Warren | last post by:
I am investigating converting a wiki site to plone. I am having a lot of difficulty finding good documentation programmatically accessing the ZODB API. A lot of the user feedback is centered on...
3
by: krzychu | last post by:
Hi, I have installed brand new platform - Zope-2-7-6, Python 2.4.1, Plone 2.0.5, OS Debian 1:3.3.6-2. After import a old Plone site from the following platform Zope-2-7-4, Python 2.3.3, Plone...
3
by: Rene Pijlman | last post by:
I have a productional Linux web server with a Python/Zope/Plone. Now I'd like to install a non-Zope Python/ZODB application on the same server. What is the recommended way of doing that? Option...
2
by: d.schulz81 | last post by:
Hi, are there any specific groups for zope / plone regarding questions? my question is: How is it possible to use Zope 3 Products with Plone, which is an extension based on Zope 2?
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.