Web development with python.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • j.paston.cooper@gmail.com

    #1

    Web development with python.

    Is Plone analoguous to ASP.NET? Is it a python web developing platform?
    I am confused on what Turbogears is aswell because of the lack of
    documentation for it.

  • Diez B. Roggisch

    #2
    Re: Web development with python.

    j.paston.cooper @gmail.com wrote:
    [color=blue]
    > Is Plone analoguous to ASP.NET? Is it a python web developing platform?[/color]

    No, if anything ZOPE is analogous to ASP.NET. Plone is an CMS (Conetent
    Management System) application written on top of ZOPE.
    [color=blue]
    > I am confused on what Turbogears is aswell because of the lack of
    > documentation for it.[/color]

    TurboGears is also like ASP.NET

    Diez


    Comment

    • Ilkka Poutanen

      #3
      Re: Web development with python.

      On 2006-05-15, j.paston.cooper @gmail.com <j.paston.coope r@gmail.com> wrote:[color=blue]
      > Is Plone analoguous to ASP.NET? Is it a python web developing platform?[/color]

      Plone is analoguous to something line Kentico CMS[1]. Plone runs on Zope
      which is an application server, being to Python sort of what IIS is to
      ASP.NET, I think. Don't take my word for it.

      You might want to read the introductory documentation[1][2] for Zope and
      Plone.

      1. http://www.kentico.com/
      2. http://plone.org/about/plone/
      3. http://www.zope.org/WhatIsZope


      --
      Ilkka Poutanen [http://ipo.iki.fi/]
      And unto this, Conan;

      Comment

      • bruno at modulix

        #4
        Re: Web development with python.

        j.paston.cooper @gmail.com wrote:[color=blue]
        > Is Plone analoguous to ASP.NET?[/color]

        Certainly not.
        [color=blue]
        > Is it a python web developing platform?[/color]

        No, it's a CMS. FWIW, it's written in bold on the project's home page:
        """
        Plone: A user-friendly and powerful open source Content Management System
        """
        (http://www.plone.org)

        FWIW, it's based on Zope, which is a Python-based web application server
        [color=blue]
        > I am confused on what Turbogears is aswell[/color]

        A Python web MVC framework.
        [color=blue]
        > because of the lack of
        > documentation for it.[/color]

        I think there's at least enough informations on the turbogears website
        to understand that it's a framework for doing web applications :

        """
        TurboGears is the rapid web development megaframework
        """
        (http://www.turbogears.org/index.html)

        """
        Create great web apps faster
        """
        (http://www.turbogears.org/about/index.html)


        HTH
        --
        bruno desthuilliers
        python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
        p in 'onurb@xiludom. gro'.split('@')])"

        Comment

        Working...