Hi All

I'm a newbie trying to create a Google Gadget using Google App Engine
for Google Apps Sites.
I tried the tutorial in Google App Engine Getting Started and changed
the index.html file into a index.xml file and modified it to as shown
below.
I am able to use the application on the xxx.appspot.com site, but when
I added it to a dashboard in Google Apps Sites, the Sites says
"Information is temporarily unavailable.".

Thank you
G



<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs title="html content type example" />
<Content type="html">
  <head>
    <link type="text/css" rel="stylesheet" href="/stylesheets/
main.css" />
  </head>
  <body>
    {% for greeting in greetings %}
      {% if greeting.author %}
        <b>{{ greeting.author.nickname }}</b> wrote:
      {% else %}
       An anonymous person wrote:
      {% endif %}
      <blockquote>{{ greeting.content|escape }}</blockquote>
    {% endfor %}

    <form action="/sign" method="post">
      <div><textarea name="content" rows="3" cols="60"></textarea></
div>
      <div><input type="submit" value="Sign Guestbook"></div>
    </form>

    <a href="{{ url }}">{{ url_linktext }}</a>

  </body>

</Content>
</Module>



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to