diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-09-10 03:44:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:05:50 -0500 |
commit | 15c1801a5c13479f1bf67e0e3c1ad7c0af8e3af7 (patch) | |
tree | c5bcb824e04cb1de4cccb07a148c113ff1831298 /webapps/swat/Makefile | |
parent | 37de963f67a1331b6402f901d2bda79b7119a155 (diff) | |
download | samba-15c1801a5c13479f1bf67e0e3c1ad7c0af8e3af7.tar.gz samba-15c1801a5c13479f1bf67e0e3c1ad7c0af8e3af7.tar.bz2 samba-15c1801a5c13479f1bf67e0e3c1ad7c0af8e3af7.zip |
r25051: Move SWAT back to the old-style form-submit modal.
The Web 2.0, async client tools were really interesting, but without
developer backing they remain impossible to support into a release.
The most interesting app was the LDB browser, and I intend to replace
this with phpLdapAdmin, preconfigured for Apache during provision.
This also removes the need to 'compile' SWAT on SVN checkouts.
Andrew Bartlett
(This used to be commit cda965e908055d45b1c05bc29cc791f7238d2fae)
Diffstat (limited to 'webapps/swat/Makefile')
-rw-r--r-- | webapps/swat/Makefile | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/webapps/swat/Makefile b/webapps/swat/Makefile deleted file mode 100644 index afff0594c1..0000000000 --- a/webapps/swat/Makefile +++ /dev/null @@ -1,104 +0,0 @@ -################################################################################ -# REQUIRED SETTINGS -################################################################################ - -# -# Path to the folder of your qooxdoo distribution. -# Can either be -# a) a path relative to the location of this Makefile (preferred) or -# b) an absolute path starting at the root of your file system -# Example: If you put the skeleton folder next to the qooxdoo SDK folder, -# you can use the following relative path: -# QOOXDOO_PATH = ../qooxdoo-0.6.5-sdk -# -QOOXDOO_PATH = ../qooxdoo-0.6.5-sdk - -# -# Similar to above, but from the webserver point of view. -# Starting point is now the application HTML file of the source folder -# (source/index.html by default). In most cases just prepend a "../" to -# QOOXDOO_PATH from above. -# Example: QOOXDOO_URI = ../../qooxdoo-0.6.5-sdk -# -QOOXDOO_URI = ../../qooxdoo-0.6.5-sdk - - - - - - -################################################################################ -# BASIC SETTINGS -################################################################################ - -# -# Full namespace of your application -# -APPLICATION_NAMESPACE = swat - -# -# Titles used in your API viewer and during the build process -# -APPLICATION_MAKE_TITLE = SWAT -APPLICATION_API_TITLE = Swat - -# -# Additional static files of your application (space separated list) -# -APPLICATION_FILES = index.html - -# -# Locales to build (space separated list) -# To set a specific locale like "en_US" the generic locale "en" has to be added as well -# Example: APPLICATION_LOCALES = en en_US de de_DE es -# -APPLICATION_LOCALES = - - - - - - -################################################################################ -# ADVANCED SETTINGS -################################################################################ - -# -# Please take a look at $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk -# for an overview of available options -# - -include $(QOOXDOO_PATH)/frontend/framework/tool/make/apiviewer.mk - -APPLICATION_CLASSNAME = $(APPLICATION_NAMESPACE).main.Main -APPLICATION_LINEBREAKS_BUILD = true -APPLICATION_LINEBREAKS_SOURCE = true -APPLICATION_OPTIMIZE_STRINGS = false -APPLICATION_OPTIMIZE_VARIABLES = false -APPLICATION_ADDITIONAL_CLASS_PATH = \ - --class-path $(APIVIEWER_PATH)/source/class \ - --class-uri $(APIVIEWER_PATH)/source/class -APPLICATION_ADDITIONAL_RESOURCE = \ - --resource-input $(APIVIEWER_PATH)/source/resource \ - --resource-output $(APPLICATION_BUILD_PATH)/resource/apiviewer \ - --define-runtime-setting apiviewer.resourceUri:$(APPLICATION_PAGE_TO_TOPLEVEL)/resource/apiviewer -APPLICATION_RESOURCE_FILTER = true -APPLICATION_COMPLETE_SOURCE = false - -# Typically, we just need a "build" -.PHONY: default - -default: build - - -################################################################################ -# INCLUDE CORE -################################################################################ - -ifneq ($(QOOXDOO_PATH),PLEASE_DEFINE_QOOXDOO_PATH) -include $(QOOXDOO_PATH)/frontend/framework/tool/make/targets.mk -include $(QOOXDOO_PATH)/frontend/framework/tool/make/application.mk -endif - -error: - @echo " * Please configure QOOXDOO_PATH" |