On Feb 28, 2006, at 6:46 PM, George Daswani wrote:

Speaking of Permissions, I'm currently modifying roller so that certain blog websites have read access restrictions (private, accessible only by
users with read permissions or above via roller users).  Was thinking
about the doing following, and would such a thing be useful to other
people?

Basically modifying the current permission set from

    public static short LIMITED = 0x00; // 0000
    public static short AUTHOR  = 0x01; // 0011
    public static short ADMIN   = 0x03; // 0011

to

    public static short READ    = 0x00; // 0000
    public static short LIMITED = 0x01; // 0001
    public static short AUTHOR  = 0x03; // 0011
    public static short ADMIN   = 0x07; // 0111

then modify the various templates to support it? Would such a patch be
useful to other people?

As I've said before, I think "private" is a very important feature for business and personal bloggers alike, so I've love to see this patch. Your patch will probably have a higher chance of acceptance if you share/discuss your design here on the list.

- Dave


Reply via email to