Revert 4d529b75857597dedd181045ba1bf97b99c66b3e.

Turns out, that was a terrible idea.

Putting privilegedactions in actions/ meant that we tried to interpret
it during startup (along with other similarly silly bugs).  The
fastest way to fix this issue is to merely revert it.
This commit is contained in:
Nick Daly 2013-10-30 21:45:43 -05:00
parent 0296a1a99c
commit 3a30660c25
4 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@ from gettext import gettext as _
from modules.auth import require from modules.auth import require
from plugin_mount import PagePlugin from plugin_mount import PagePlugin
from forms import Form from forms import Form
from actions.privilegedactions import privilegedaction_run from privilegedactions import privilegedaction_run
import cfg import cfg
class Apps(PagePlugin): class Apps(PagePlugin):
@ -35,7 +35,7 @@ class Apps(PagePlugin):
digital property you have, so why trust it to companies that have no digital property you have, so why trust it to companies that have no
investment in the sentimental value of your family snaps? Keep those investment in the sentimental value of your family snaps? Keep those
photos local, backed up, easily accessed and free from the whims of photos local, backed up, easily accessed and free from the whims of
some other website's business model.</p> some other websites business model.</p>
""") """)
@cherrypy.expose @cherrypy.expose

View File

@ -4,7 +4,7 @@ from modules.auth import require
from plugin_mount import PagePlugin, FormPlugin from plugin_mount import PagePlugin, FormPlugin
import cfg import cfg
from forms import Form from forms import Form
from actions.privilegedactions import privilegedaction_run from privilegedactions import privilegedaction_run
from util import Message from util import Message
class xmpp(PagePlugin): class xmpp(PagePlugin):

View File

@ -9,7 +9,7 @@ from gettext import gettext as _
from filedict import FileDict from filedict import FileDict
from modules.auth import require from modules.auth import require
from plugin_mount import PagePlugin, FormPlugin from plugin_mount import PagePlugin, FormPlugin
from actions.privilegedactions import privilegedaction_run from privilegedactions import privilegedaction_run
import cfg import cfg
from forms import Form from forms import Form
from model import User from model import User