2. Introduction#

2.1. Who are you?#

Tell us about yourselves:

  • Name, company, country...

  • What is your Plone experience?

  • What is your web development experience?

  • What are your expectations for this tutorial?

  • What is your favorite text editor?

  • If this training will include the development chapters:

    • Do you know the HTML of the output of this?

      <div class="hiddenStructure"
            tal:repeat="num python:range(1, 10, 5)"
            tal:content="structure num"
            tal:omit-tag="">
        This is some weird stuff!
      </div>
      

      The answer is:

      1 6
      
    • Do you know what the following would return?:

      [(i.Title, i.getURL()) for i in context.getFolderContents()]
      

2.2. What will we do?#

Some technologies and tools we use during the training:

2.3. What will we not do?#

We will not cover the following topics:

Other topics are only covered lightly:

2.4. What to expect#

At the end of the first two days of training, you'll know many of the tools required for Plone installation, integration and configuration.

You'll be able to install add-on packages and will know something about the technologies underlying Plone and their histories.

At the end of the second two days, you won't be a complete professional Plone-programmer, but you will know some of the more powerful features of Plone and should be able to construct a more complex website with custom themes and packages.

You should also be able to find out where to look for instructions to do tasks we did not cover. You will know most of the core technologies involved in Plone programming.

If you want to become a professional Plone developer or a highly sophisticated Plone integrator you should definitely read Martin Aspeli's book and then re-read it again while actually doing a complex project.

2.5. Classroom Protocol#

Note

  • Stop us and ask questions when you have them!

  • Tell us if we speak too fast, too slow or not loud enough.

  • One of us is always there to help you if you are stuck. Please give us a sign if you are stuck.

  • We'll take some breaks, the first one will be at XX.

  • Where is food, restrooms

  • Someone please record the time we take for each chapter (incl. title)

  • Someone please write down errors

  • Contact us after the training: mailto:team@starzel.de

Questions to ask:

  • What did you just say?

  • Please explain what we just did again?

  • How did that work?

  • Why didn't that work for me?

  • Is that a typo?

Questions __not__ to ask:

  • Hypotheticals: What happens if I do X?

  • Research: Can Plone do Y?

  • Syllabus: Are we going to cover Z in class?

  • Marketing questions: please just don't.

  • Performance questions: Is Plone fast enough?

  • Unpythonic: Why doesn't Plone do it some other way?

  • Show off: Look what I just did!

2.6. Documentation#

Follow the training at https://2022.training.plone.org/

Note

You can use this presentation to copy & paste the code but you will memorize more if you type yourself.

2.7. Further Reading#