freeipa/ipa-server/ipa-gui/ipagui/templates/Makefile.am
Rob Crittenden 9bcd31efc5 Fix issue of double logging in ipa_error.log.
We open the log in ipa_webgui and this was being inherited by TurboGears
which uses the same log so everything was getting logged twice. Shut down
the log in ipa_webgui at the last possible moment. This will not catch
configuration errors.

Add a Not Found template.

Only print a traceback on 500 errors.
2008-06-03 22:41:09 -04:00

56 lines
968 B
Makefile

NULL =
appdir = $(IPA_DATA_DIR)/ipagui/templates
app_PYTHON = \
__init__.py \
$(NULL)
app_DATA = \
delegateedit.kid \
delegateform.kid \
delegategroupsearch.kid \
delegatelayout.kid \
delegatelist.kid \
delegatenew.kid \
dynamiceditsearch.kid \
groupeditform.kid \
groupedit.kid \
grouplayout.kid \
grouplist.kid \
groupnewform.kid \
groupnew.kid \
groupshow.kid \
ipapolicyeditform.kid \
ipapolicyedit.kid \
ipapolicyshow.kid \
loginfailed.kid \
master.kid \
not_found.kid \
policyindex.kid \
policylayout.kid \
principallayout.kid \
principallist.kid \
principalshow.kid \
principalnewform.kid \
principalnew.kid \
usereditform.kid \
useredit.kid \
userlayout.kid \
userlist.kid \
usernewform.kid \
usernew.kid \
userselectsearch.kid \
usershow.kid \
welcome.kid \
unhandled_exception.kid \
$(NULL)
EXTRA_DIST = \
$(app_DATA) \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
*.pyc \
Makefile.in