Wezzul.com
mobimg mobimg mobimg mobimg mobimg

Posts tagged with: development

Features

So I have a few things I want to add to the site before it's complete. They are as follows, in order of importance:

- Editing of posts. This is easy as shit. Not sure why I don't knock it out in 10 minutes
- Comments. Shelby, stop asking for it. In due time.
- Better post interface. Probably steal a rich text editor for this as I have some experience with stealing them.
- Some better view of old mobile images. Easily my favorite part of the site
- Editing of twitter right from the page.
- Tag cloud (why tag posts if there is no cloud)

That's it. Trying to keep updating this, but fuck do I hate blogging.

Manage Permissions on Plone Form

Over the past year and some months, I have learned more than I ever wanted to know about Zope and Plone. The problem with those pieces of software is the lack of really good information for filesystem development there is out there. Hence the reason I am posting this here, so I can remember it.

To change the permissions on a filesystem file, in it's associated metadata file, add the following:

[security]
View=0:Authenticated,Manager


That will make it so that only Authenticated users and Managers can view the object. You can set this for any permissions that are available on the object. The 0 is the setting for acquisition. As expected, set this to 1 to turn acquisition on.
All Posts