Search Function Fixed! February 18 2006
Looks like the search that was included with the theme wasn’t as robust as it should have been. I had to make the form action explicitly point to the index.php
Stupid Search
Looks like the search isn’t working on this version of WP.. Just an FYI
Wordpress Upgrade
I have just done an upgrade to WordPress 201 …. hopefully it doesn’t mess EVERYTHING up
Using The SimpleACL Class February 17 2006
A few minutes ago I posted a Simple ACL Class for VB.NET
The whole idea behind an ACL is to convert human “real-world” permissions to a single number representation. This eliminates the need for setting rows and rows of bits, true / false etc within database entries.
Using this class is fairly easy as I really only have 5 tasks which I’m interested in controlling permissions for (Tasks A-E)
To start things off we instantiate the class
Private myACL As clsSimpleACL myACL = New clsSimpleACL
From there if we want to “Allow” or “Deny” various permissions, we simply call the appropriate routines within the …
SimpleACL Class
Public Class clsSimpleACL
Private __intThisACLValue As Integer
Private Enum ACL As Integer
Task_A = 1
Task_B = 2
Task_C = 4
Task_D = 8
Task_E = 16
End Enum
Public Property ACLValue() As Integer
Get
Return (__intThisACLValue)
End Get
Set(ByVal Value As Integer)
…
