fix double text field, update documentation allow compilation with TCSDB

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@25034 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
dwetzel 2007-04-13 20:40:45 +00:00
parent 08d948d1dd
commit 5c5dbf256e
3 changed files with 13 additions and 18 deletions

View file

@ -47,3 +47,8 @@ DIST_FILES = $(SRCS) $(HDRS) GNUmakefile Makefile.postamble Makefile.preamble
include $(GNUSTEP_MAKEFILES)/gswapp.make
-include Makefile.postamble
# enable this for TCSimpleDB
#ADDITIONAL_TOOL_LIBS += -lTCSimpleDB
#ADDITIONAL_OBJCFLAGS += -DTCSDB

View file

@ -1,21 +1,11 @@
To install this little application:
o install GNUstep, GNUstepWeb (including apache module),..
o do a make install in this directory
o add entry for this application in your apache module configuration file:
hello = {
adaptorTemplatesPath = "/home/httpd/GSWAdaptorTemplates";
GSWExtensionsFrameworkWebServerResources="/GSW/GSWExtensions/WebServerResources";
canDump = YES;
instances = {
1 = {
host=YourHostName;
port=9001;
parameters = { transport=socket; };
};
};
};
o cd /usr/GNUstep/System/GSWApps/Hello.gswa
o run ./ix86/linux-gnu/gnu-gnu-gnu/Hello
o open your browser a goto: http://YourHostName/GSWeb/hello
./Hello.gswa/Hello -GSWMTEnabled NO -GSWPort 9008 -GSWAdaptorHost 10.1.0.1
(change your port and IP as needed)
Point your web browser to the URL printed out or configure a web adaptor as described on
http://wiki.gnustep.org/index.php/Apache2Adaptor

View file

@ -6,7 +6,7 @@
<GSWEB NAME=MyForm>
What's your name?
<P>
<GSWEB NAME=NAME_FIELD><INPUT TYPE="text"></GSWEB>
<GSWEB NAME=NAME_FIELD></GSWEB>
<GSWEB NAME=SUBMIT_BUTTON><INPUT TYPE="SUBMIT"></GSWEB>
</GSWEB>
</BODY>