import yaws 1.89

Yaws is a HTTP high perfomance 1.1 webserver particularly well suited
for dynamic-content web applications. Two separate modes of operations
are supported:

    * Standalone mode where Yaws runs as a regular webserver daemon.
      This is the default mode.
    * Embedded mode where Yaws runs as an embedded webserver in another
      Erlang application.

Yaws is entirely written in Erlang, and furthermore it is a
multithreaded webserver where one Erlang lightweight process is used to
handle each client.

ok aja@
This commit is contained in:
jasper 2010-12-22 18:38:03 +00:00
parent e2a36dd1fb
commit ec1a42aa3c
15 changed files with 557 additions and 0 deletions

51
www/yaws/Makefile Normal file
View File

@ -0,0 +1,51 @@
# $OpenBSD: Makefile,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
COMMENT-main= high performance webserver written in Erlang, libraries
COMMENT-web= high performance webserver written in Erlang, docroot
VERSION= 1.89
DISTNAME= yaws-${VERSION}
PKGNAME-main= yaws-${VERSION}
PKGNAME-web= yaws-web-${VERSION}
CATEGORIES= www
MAINTAINER= Jasper Lievisse Adriaanse <jasper@openbsd.org>
HOMEPAGE= http://yaws.hyber.org/
# BSD-3
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${HOMEPAGE}/download/
MULTI_PACKAGES = -main -web
BUILD_DEPENDS= ${RUN_DEPENDS} \
textproc/latex2html
RUN_DEPENDS= lang/erlang
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --disable-pam \
--disable-sendfile
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
RUN_DEPENDS-web= ${BASE_PKGPATH},-main
USE_GMAKE= Yes
NO_REGRESS= Yes
PREFIX-web= /var
pre-configure:
${SUBST_CMD} ${WRKSRC}/configure
# Remove left-over patch file.
pre-install:
@rm -f ${WRKSRC}/www/doc.yaws.orig
.include <bsd.port.mk>

5
www/yaws/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (yaws-1.89.tar.gz) = aBEIyV71zWpk0olStG1U5g==
RMD160 (yaws-1.89.tar.gz) = n8J0qd3ILMg7zurtEzdY7nHClR4=
SHA1 (yaws-1.89.tar.gz) = P2zIjrfxVPAX948a0H7/VSHnMZw=
SHA256 (yaws-1.89.tar.gz) = V3yK3eM5twA3O4O1e37KlSpBYk/PX5Y+Q5dzmd5U8XA=
SIZE (yaws-1.89.tar.gz) = 878410

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-Makefile,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
--- Makefile.orig Sat Sep 25 14:41:31 2010
+++ Makefile Tue Dec 21 15:58:31 2010
@@ -5,7 +5,7 @@ include ./vsn.mk
PKGCONFIG_FILES = yaws.pc
-all debug clean:
+all debug clean: docs
@set -e ; \
for d in $(SUBDIRS) ; do \
if [ -f $$d/Makefile ]; then ( cd $$d && $(MAKE) $@ ) || exit 1 ; fi ; \

View File

@ -0,0 +1,25 @@
$OpenBSD: patch-configure,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
Somehow the installation directory doesn't get propagated correctly
and configure bails out.
--- configure.orig Sat Sep 25 14:42:14 2010
+++ configure Tue Dec 21 15:18:52 2010
@@ -2230,7 +2230,7 @@ $as_echo "no" >&6; }
fi
-ERLBINDIR=`dirname "$ERL"` ; ERLBINDIR=`dirname "$ERLBINDIR"`/lib/erlang/bin
+ERLBINDIR=${LOCALBASE}/lib/erlang/bin
@@ -2289,7 +2289,7 @@ fi
-ERLDIR=`"${ERL}" -noshell -eval 'io:format("~s",[code:root_dir()]), erlang:halt().'`
+ERLDIR=${LOCALBASE}/lib/erlang/
ERL_DLL_LIB="${ERLDIR}/usr/lib/erl_dll.lib"

View File

@ -0,0 +1,25 @@
$OpenBSD: patch-doc_Makefile,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
Only build and install the postscript file, as generating the
pdf file make ghostscript unhappy.
--- doc/Makefile.orig Tue Dec 21 16:03:07 2010
+++ doc/Makefile Tue Dec 21 16:03:23 2010
@@ -8,7 +8,7 @@ IMG_PDF = $(IMG_EPS:.eps=.pdf)
all debug:
echo "To build the docs, please use make docs before doing make install"
-docs: check yaws.ps yaws.pdf
+docs: yaws.ps# yaws.pdf
check:
@if [ -z "$(DVIPS)" ]; then \
@@ -43,6 +43,6 @@ clean:
rm -f *.ps *.dvi *.log *.aux *.pdf *.toc *.beam 2> /dev/null || true
install:
- -install -d $(DESTDIR)$(PREFIX)/share/doc/yaws-$(YAWS_VSN)
- -cp yaws.pdf $(DESTDIR)$(PREFIX)/share/doc/yaws-$(YAWS_VSN)
+ -install -d $(DESTDIR)$(PREFIX)/share/doc/yaws/
+ -cp yaws.ps $(DESTDIR)$(PREFIX)/share/doc/yaws/

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-include_mk_in,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
--- include.mk.in.orig Tue Dec 21 15:38:41 2010
+++ include.mk.in Tue Dec 21 15:38:54 2010
@@ -4,7 +4,7 @@
PREFIX = @prefix@
prefix = ${PREFIX}
ETCDIR = @sysconfdir@
-VARDIR = @localstatedir@
+VARDIR = /var
DVILATEX = @DVILATEX@
PDFLATEX = @PDFLATEX@

View File

@ -0,0 +1,23 @@
$OpenBSD: patch-man_Makefile,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
Fix path for manpages.
--- man/Makefile.orig Tue Dec 21 15:22:30 2010
+++ man/Makefile Tue Dec 21 15:22:46 2010
@@ -2,11 +2,11 @@
include ../include.mk
install:
- install -d $(DESTDIR)$(PREFIX)/share/man/man1
- install -d $(DESTDIR)$(PREFIX)/share/man/man5
- cp yaws.1 $(DESTDIR)$(PREFIX)/share/man/man1
- cp yaws.conf.5 $(DESTDIR)$(PREFIX)/share/man/man5
- cp yaws_api.5 $(DESTDIR)$(PREFIX)/share/man/man5
+ $(BSD_INSTALL_MAN_DIR) $(DESTDIR)$(PREFIX)/man/man1
+ $(BSD_INSTALL_MAN_DIR) $(DESTDIR)$(PREFIX)/man/man5
+ $(BSD_INSTALL_MAN) yaws.1 $(DESTDIR)$(PREFIX)/man/man1
+ $(BSD_INSTALL_MAN) yaws.conf.5 $(DESTDIR)$(PREFIX)/man/man5
+ $(BSD_INSTALL_MAN) yaws_api.5 $(DESTDIR)$(PREFIX)/man/man5

View File

@ -0,0 +1,18 @@
$OpenBSD: patch-scripts_Install,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
Don't install these directories, it's taken care of already
by mtree, or will be with @sample in the PLIST.
--- scripts/Install.orig Tue Dec 21 16:02:05 2010
+++ scripts/Install Tue Dec 21 16:02:29 2010
@@ -18,10 +18,6 @@ p=${prefix}
e=${etcdir}
v=${vardir}
-install -d ${destdir}${prefix}/bin
-install -d ${destdir}${prefix}/etc
-install -d ${destdir}${vardir}/log/yaws
-
cat yaws.template | \
./Subst %yawsdir% ${prefix}/lib/yaws | \
./Subst %vardir% ${vardir} | \

View File

@ -0,0 +1,42 @@
$OpenBSD: patch-scripts_Makefile,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
- Set the correct path for the logging directory in the config file.
- Don't set the hostname of the machine the package was built on.
- Install the config files to share/examples/yaws/ and we'll
@sample them later to the right location.
--- scripts/Makefile.orig Sat Sep 25 14:41:31 2010
+++ scripts/Makefile Tue Dec 21 19:42:53 2010
@@ -25,7 +25,7 @@ local_install: ../bin/yaws
cat yaws.conf.template | \
./Subst %yawsdir% "`pwd`/.." | \
./Subst %logdir% $$HOME/yaws_logs | \
- ./Subst %host% `hostname` | \
+ ./Subst %host% `FULL_HOSTNAME_HERE` | \
./Subst %port% 8000 | \
./Subst %vardir% "$(VARDIR)" | \
./Subst %docroot% `pwd`/../www | \
@@ -41,7 +41,7 @@ yaws.conf:
@echo PREFIX is $(PREFIX)
cat yaws.conf.template | \
./Subst %yawsdir% "$(PREFIX)/lib/yaws" | \
- ./Subst %logdir% "$(PREFIX)/var/log/yaws" | \
+ ./Subst %logdir% "/var/log/yaws" | \
./Subst %vardir% "$(VARDIR)" | \
./Subst %host% `hostname` | \
./Subst %port% 80 | \
@@ -62,9 +62,9 @@ install: .install
then echo "Keeping old config file "; \
cp yaws.conf $(DESTDIR)$(ETCDIR)/yaws/yaws.conf.template; \
else \
- echo "Installing $(DESTDIR)$(ETCDIR)/yaws/yaws.conf"; \
- mkdir -p $(DESTDIR)$(ETCDIR)/yaws; \
- cp yaws.conf $(DESTDIR)$(ETCDIR)/yaws/yaws.conf; \
+ echo "Installing $(DESTDIR)$(PREFIX)/share/examples/yaws/yaws.conf"; \
+ mkdir -p $(DESTDIR)$(PREFIX)/share/examples/yaws; \
+ cp yaws.conf $(DESTDIR)$(PREFIX)/share/examples/yaws/yaws.conf; \
fi
- @cp ../ssl/yaws-cert.pem $(DESTDIR)$(ETCDIR)/yaws
- @cp ../ssl/yaws-key.pem $(DESTDIR)$(ETCDIR)/yaws
+ @cp ../ssl/yaws-cert.pem $(DESTDIR)$(PREFIX)/share/examples/yaws
+ @cp ../ssl/yaws-key.pem $(DESTDIR)$(PREFIX)/share/examples/yaws

View File

@ -0,0 +1,15 @@
$OpenBSD: patch-www_doc_yaws,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
We don't install the pdf file at the moment.
--- www/doc.yaws.orig Tue Dec 21 19:40:32 2010
+++ www/doc.yaws Tue Dec 21 19:40:41 2010
@@ -20,7 +20,7 @@ man pages though.
</p>
<ul>
- <li> <a href="yaws.pdf"> yaws.pdf</a></li>
+ <!--<li> <a href="yaws.pdf"> yaws.pdf</a></li>-->
<li> <a href="yaws.ps"> yaws.ps</a></li>
</ul>

12
www/yaws/pkg/DESCR-main Normal file
View File

@ -0,0 +1,12 @@
Yaws is a HTTP high perfomance 1.1 webserver particularly well suited
for dynamic-content web applications. Two separate modes of operations
are supported:
* Standalone mode where Yaws runs as a regular webserver daemon.
This is the default mode.
* Embedded mode where Yaws runs as an embedded webserver in another
Erlang application.
Yaws is entirely written in Erlang, and furthermore it is a
multithreaded webserver where one Erlang lightweight process is used to
handle each client.

1
www/yaws/pkg/DESCR-web Normal file
View File

@ -0,0 +1 @@
This package contains the document root files for Yaws.

View File

@ -0,0 +1,2 @@
@comment $OpenBSD: PFRAG.shared-main,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
lib/yaws/priv/lib/setuid_drv.so

78
www/yaws/pkg/PLIST-main Normal file
View File

@ -0,0 +1,78 @@
@comment $OpenBSD: PLIST-main,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
%%SHARED%%
bin/yaws
lib/pkgconfig/
lib/pkgconfig/yaws.pc
lib/yaws/
lib/yaws/ebin/
lib/yaws/ebin/.empty
lib/yaws/ebin/authmod_gssapi.beam
lib/yaws/ebin/haxe.beam
lib/yaws/ebin/json.beam
lib/yaws/ebin/jsonrpc.beam
lib/yaws/ebin/mime_type_c.beam
lib/yaws/ebin/mime_types.beam
lib/yaws/ebin/yaws.app
lib/yaws/ebin/yaws.beam
lib/yaws/ebin/yaws_api.beam
lib/yaws/ebin/yaws_app.beam
lib/yaws/ebin/yaws_appmod_cgi.beam
lib/yaws/ebin/yaws_appmod_fcgi.beam
lib/yaws/ebin/yaws_cgi.beam
lib/yaws/ebin/yaws_compile.beam
lib/yaws/ebin/yaws_config.beam
lib/yaws/ebin/yaws_ctl.beam
lib/yaws/ebin/yaws_dav.beam
lib/yaws/ebin/yaws_debug.beam
lib/yaws/ebin/yaws_generated.beam
lib/yaws/ebin/yaws_html.beam
lib/yaws/ebin/yaws_jsonrpc.beam
lib/yaws/ebin/yaws_log.beam
lib/yaws/ebin/yaws_log_file_h.beam
lib/yaws/ebin/yaws_ls.beam
lib/yaws/ebin/yaws_multipart.beam
lib/yaws/ebin/yaws_outmod.beam
lib/yaws/ebin/yaws_pam.beam
lib/yaws/ebin/yaws_revproxy.beam
lib/yaws/ebin/yaws_rpc.beam
lib/yaws/ebin/yaws_rss.beam
lib/yaws/ebin/yaws_sendfile.beam
lib/yaws/ebin/yaws_sendfile_compat.beam
lib/yaws/ebin/yaws_server.beam
lib/yaws/ebin/yaws_session_server.beam
lib/yaws/ebin/yaws_soap_lib.beam
lib/yaws/ebin/yaws_soap_srv.beam
lib/yaws/ebin/yaws_stats.beam
lib/yaws/ebin/yaws_sup.beam
lib/yaws/ebin/yaws_sup_restarts.beam
lib/yaws/ebin/yaws_ticker.beam
lib/yaws/ebin/yaws_websockets.beam
lib/yaws/ebin/yaws_xmlrpc.beam
lib/yaws/ebin/yaws_zlib.beam
lib/yaws/examples/
lib/yaws/examples/ebin/
lib/yaws/examples/include/
lib/yaws/include/
lib/yaws/include/soap.hrl
lib/yaws/include/yaws.hrl
lib/yaws/include/yaws_api.hrl
lib/yaws/include/yaws_dav.hrl
lib/yaws/priv/
lib/yaws/priv/envelope.xsd
lib/yaws/priv/lib/
lib/yaws/priv/soap.xsd
lib/yaws/priv/wsdl.xsd
@man man/man1/yaws.1
@man man/man5/yaws.conf.5
@man man/man5/yaws_api.5
share/doc/yaws/
share/doc/yaws/yaws.ps
share/examples/yaws/
@sample ${SYSCONFDIR}/yaws/
share/examples/yaws/yaws-cert.pem
@sample ${SYSCONFDIR}/yaws/yaws-cert.pem
share/examples/yaws/yaws-key.pem
@sample ${SYSCONFDIR}/yaws/yaws-key.pem
share/examples/yaws/yaws.conf
@sample ${SYSCONFDIR}/yaws/yaws.conf
@sample /var/log/yaws/

236
www/yaws/pkg/PLIST-web Normal file
View File

@ -0,0 +1,236 @@
@comment $OpenBSD: PLIST-web,v 1.1.1.1 2010/12/22 18:38:03 jasper Exp $
yaws/
yaws/ebin/
yaws/ebin/myappmod.beam
yaws/ebin/shopcart.beam
yaws/www/
yaws/www/END
yaws/www/END2
yaws/www/HEAD
yaws/www/Makefile
yaws/www/TAB.inc
yaws/www/api.yaws
yaws/www/appmods.yaws
yaws/www/arg.yaws
yaws/www/arg2.yaws
yaws/www/bindings.yaws
yaws/www/cgi-bin/
yaws/www/cgi-bin/foo.py
yaws/www/cgi.yaws
yaws/www/code/
yaws/www/code.yaws
yaws/www/code/Makefile
yaws/www/code/myappmod.beam
yaws/www/code/myappmod.erl
yaws/www/compile_layout.dia
yaws/www/compile_layout.png
yaws/www/configuration.yaws
yaws/www/contact.yaws
yaws/www/contribs.yaws
yaws/www/cookies.yaws
yaws/www/doc.yaws
yaws/www/dynamic.yaws
yaws/www/embed.yaws
yaws/www/examples.yaws
yaws/www/favicon.ico
yaws/www/form.yaws
yaws/www/haxe_intro.yaws
yaws/www/haxe_sample.html
yaws/www/haxe_sample.yaws
yaws/www/icons/
yaws/www/icons/README
yaws/www/icons/a.gif
yaws/www/icons/alert.black.gif
yaws/www/icons/alert.red.gif
yaws/www/icons/apache_pb.gif
yaws/www/icons/back.gif
yaws/www/icons/ball.gray.gif
yaws/www/icons/ball.red.gif
yaws/www/icons/binary.gif
yaws/www/icons/binhex.gif
yaws/www/icons/blank.gif
yaws/www/icons/bomb.gif
yaws/www/icons/box1.gif
yaws/www/icons/box2.gif
yaws/www/icons/broken.gif
yaws/www/icons/burst.gif
yaws/www/icons/c.gif
yaws/www/icons/comp.blue.gif
yaws/www/icons/comp.gray.gif
yaws/www/icons/compressed.gif
yaws/www/icons/continued.gif
yaws/www/icons/dir.gif
yaws/www/icons/down.gif
yaws/www/icons/dvi.gif
yaws/www/icons/erl.gif
yaws/www/icons/f.gif
yaws/www/icons/folder.gif
yaws/www/icons/folder.open.gif
yaws/www/icons/folder.sec.gif
yaws/www/icons/forward.gif
yaws/www/icons/generic.gif
yaws/www/icons/generic.red.gif
yaws/www/icons/generic.sec.gif
yaws/www/icons/gnu-head-tiny.jpg
yaws/www/icons/hand.right.gif
yaws/www/icons/hand.up.gif
yaws/www/icons/hrl.gif
yaws/www/icons/icon.sheet.gif
yaws/www/icons/image1.gif
yaws/www/icons/image2.gif
yaws/www/icons/image3.gif
yaws/www/icons/index.gif
yaws/www/icons/layout.gif
yaws/www/icons/left.gif
yaws/www/icons/link.gif
yaws/www/icons/mailman-large.jpg
yaws/www/icons/mailman.jpg
yaws/www/icons/movie.gif
yaws/www/icons/p.gif
yaws/www/icons/patch.gif
yaws/www/icons/pdf.gif
yaws/www/icons/php4.gif
yaws/www/icons/pie0.gif
yaws/www/icons/pie1.gif
yaws/www/icons/pie2.gif
yaws/www/icons/pie3.gif
yaws/www/icons/pie4.gif
yaws/www/icons/pie5.gif
yaws/www/icons/pie6.gif
yaws/www/icons/pie7.gif
yaws/www/icons/pie8.gif
yaws/www/icons/portal.gif
yaws/www/icons/ps.gif
yaws/www/icons/quill.gif
yaws/www/icons/right.gif
yaws/www/icons/screw1.gif
yaws/www/icons/screw2.gif
yaws/www/icons/script.gif
yaws/www/icons/small/
yaws/www/icons/small/README.txt
yaws/www/icons/small/back.gif
yaws/www/icons/small/binary.gif
yaws/www/icons/small/binhex.gif
yaws/www/icons/small/blank.gif
yaws/www/icons/small/broken.gif
yaws/www/icons/small/burst.gif
yaws/www/icons/small/comp1.gif
yaws/www/icons/small/comp2.gif
yaws/www/icons/small/compressed.gif
yaws/www/icons/small/continued.gif
yaws/www/icons/small/dir.gif
yaws/www/icons/small/dir2.gif
yaws/www/icons/small/doc.gif
yaws/www/icons/small/forward.gif
yaws/www/icons/small/generic.gif
yaws/www/icons/small/generic2.gif
yaws/www/icons/small/generic3.gif
yaws/www/icons/small/image.gif
yaws/www/icons/small/image2.gif
yaws/www/icons/small/index.gif
yaws/www/icons/small/key.gif
yaws/www/icons/small/movie.gif
yaws/www/icons/small/patch.gif
yaws/www/icons/small/ps.gif
yaws/www/icons/small/rainbow.gif
yaws/www/icons/small/sound.gif
yaws/www/icons/small/sound2.gif
yaws/www/icons/small/tar.gif
yaws/www/icons/small/text.gif
yaws/www/icons/small/transfer.gif
yaws/www/icons/small/unknown.gif
yaws/www/icons/small/uu.gif
yaws/www/icons/sound1.gif
yaws/www/icons/sound2.gif
yaws/www/icons/sphere1.gif
yaws/www/icons/sphere2.gif
yaws/www/icons/tar.gif
yaws/www/icons/tex.gif
yaws/www/icons/text.gif
yaws/www/icons/transfer.gif
yaws/www/icons/unknown.gif
yaws/www/icons/up.gif
yaws/www/icons/uu.gif
yaws/www/icons/uuencoded.gif
yaws/www/icons/world1.gif
yaws/www/icons/world2.gif
yaws/www/icons/yaws.gif
yaws/www/icons/yawsY.gif
yaws/www/icons/yaws_head.gif
yaws/www/icons/yaws_pb.gif
yaws/www/icons/yaws_y.gif
yaws/www/index.yaws
yaws/www/internals.yaws
yaws/www/jsolait/
yaws/www/jsolait/jsolait.js
yaws/www/jsolait/lib/
yaws/www/jsolait/lib/jsonrpc.js
yaws/www/jsolait/lib/urllib.js
yaws/www/json_intro.yaws
yaws/www/json_sample.html
yaws/www/json_sample.yaws
yaws/www/man.yaws
yaws/www/motivation.yaws
yaws/www/news
yaws/www/pcookie.yaws
yaws/www/post.yaws
yaws/www/privbind.yaws
yaws/www/process_tree.dia
yaws/www/process_tree.png
yaws/www/query.yaws
yaws/www/readcookie.yaws
yaws/www/readpcookie.yaws
yaws/www/redirect.yaws
yaws/www/redirect2.yaws
yaws/www/redirect3.yaws
yaws/www/redirect4.yaws
yaws/www/session.yaws
yaws/www/session1.yaws
yaws/www/setcookie.yaws
yaws/www/setpcookie.yaws
yaws/www/shoppingcart/
yaws/www/shoppingcart/Makefile
yaws/www/shoppingcart/buy.yaws
yaws/www/shoppingcart/index.yaws
yaws/www/shoppingcart/junk.jpg
yaws/www/shoppingcart/loginpost.yaws
yaws/www/shoppingcart/logout.yaws
yaws/www/shoppingcart/shopcart.beam
yaws/www/shoppingcart/shopcart.erl
yaws/www/shoppingcart/shopcart_form.yaws
yaws/www/shoppingcart/source.html
yaws/www/shoppingcart/style.css
yaws/www/simple.yaws
yaws/www/simple_ex1.yaws
yaws/www/simple_ex2.yaws
yaws/www/simple_ex3.yaws
yaws/www/simple_ex4.yaws
yaws/www/small.yaws
yaws/www/soap_intro.yaws
yaws/www/spacer.gif
yaws/www/ssi/
yaws/www/ssi.yaws
yaws/www/ssi/dynamic.1
yaws/www/ssi/dynamic.2
yaws/www/ssi/dynamic.3
yaws/www/ssi_ex1
yaws/www/static.html
yaws/www/stats_ex.yaws
yaws/www/stil.css
yaws/www/stream.yaws
yaws/www/testdir/
yaws/www/testdir/index.html
yaws/www/todo.yaws
yaws/www/upload.yaws
yaws/www/upload0.yaws
yaws/www/urandom.yaws
yaws/www/urandom_from_pid.yaws
yaws/www/websockets.yaws
yaws/www/websockets_example.yaws
yaws/www/websockets_example_endpoint.yaws
yaws/www/yapp_intro.yaws
yaws/www/yaws-1.55_to_1.56.patch
yaws/www/yaws.ps
yaws/www/ybed.erl
yaws/www/ybed_sup.erl
yaws/www/yman.yaws