Editing beagleboard.org?

Looking at beagleboard.org irc logs

http://www.beagleboard.org/irclogs/index.php?date=2008-03-23

there is:

[16:28:43] <jkridner> I'm always looking for those wanting to help improve the website. website sources are up-to-date on the git tree, unlike the kernel and bootloader.
[16:29:48] <jkridner> the website is actually done in such a way that anyone can edit the content right now.

Now, I wonder how the website can be edited? I created a OpenID, can log in, and assumed to get some wiki like edit buttons after login. But nothing.

What is the login then good for?

Many thanks for any hint,

Dirk

Looking at beagleboard.org irc logs

http://www.beagleboard.org/irclogs/index.php?date=2008-03-23

there is:

[16:28:43] <jkridner> I'm always looking for those wanting to help
improve the website. website sources are up-to-date on the git tree,
unlike the kernel and bootloader.
[16:29:48] <jkridner> the website is actually done in such a way that
anyone can edit the content right now.

Now, I wonder how the website can be edited? I created a OpenID, can
log in, and assumed to get some wiki like edit buttons after login.
But nothing.

It does allow for editing the pages, I just haven't added the edit buttons for anyone but myself. You can see where I added the Edit and Create buttons for myself in the code below.

http://www.beagleboard.org/gitweb/?p=beagleboard.org.git;a=blob;f=code/User/macros.js;hb=b7d1d7483a51719dc2210d27a0767282a9d9f4bf
   if(session.user)
    {
     promptString += '<p>';
     promptString += session.user["name"];
     promptString += ' <form method="post"><input type="hidden" name="logout" value="true"></input><button type="submit">Logout</

'

     promptString += ' </form>';
     if
      (
       session.user["name"] == "blog.hangerhead.com"
       && !(/\/edit$/.test(requestURL))
      )
      {
       promptString += ' &#0149 <a href="';
       promptString += requestURL + "/edit";
       promptString += '">Edit</a>';
       promptString += ' &#0149 <a href="/default/create">Create</a>';
      }
     promptString += '</p>\n';
    }

What is the login then good for?

Many thanks for any hint,

Dirk

Glad to provide it.

There are a couple of annoying features in the editing right now. The main one I want to fix in the short term is the addition of extra <div> tags. Another is creating sub-pages. Right now, my create button always puts things at root.

What I'd most like to get feedback from folks today is how to add project listings. I'm expecting all of the project hosting to be on code.google.com with the tag "beagleboard" or on sf.net. What would the folks on this list like to see on the BeagleBoard.org site for project listings?