├── bin └── .foobar ├── ebin └── .empty ├── examples ├── ebin │ └── .empty └── include │ └── .empty ├── applications ├── yapp │ ├── doc │ │ └── .empty │ ├── ebin │ │ └── .empty │ ├── vsn.mk │ ├── priv │ │ └── docroot │ │ │ ├── END.inc │ │ │ ├── index.yaws │ │ │ ├── HEAD.inc │ │ │ ├── list.yaws │ │ │ ├── remove_post.yaws │ │ │ ├── add_post.yaws │ │ │ ├── add.yaws │ │ │ └── remove.yaws │ ├── src │ │ ├── yapp.app.src │ │ ├── Makefile │ │ ├── yapp_registry.erl │ │ ├── yapp_app.erl │ │ └── yapp_sup.erl │ ├── Makefile │ └── README ├── mail │ ├── ebin │ │ └── .empty │ ├── vsn.mk │ ├── mail │ │ ├── mail.js │ │ ├── up.gif │ │ ├── down.gif │ │ ├── spacer.gif │ │ ├── tab-hr.gif │ │ ├── tool-div.gif │ │ ├── index.yaws │ │ ├── tool-send.gif │ │ ├── view-mark.gif │ │ ├── tab-bg_active.gif │ │ ├── tool-delete.gif │ │ ├── tool-newmail.gif │ │ ├── tab-bg_inactive.gif │ │ ├── tab-left_active.gif │ │ ├── tab-left_inactive.gif │ │ ├── tab-right_active.gif │ │ ├── tab-right_inactive.gif │ │ ├── compose.yaws │ │ ├── logout.yaws │ │ ├── send.yaws │ │ ├── headers.yaws │ │ ├── showmail.yaws │ │ ├── listop.yaws │ │ ├── login.yaws │ │ ├── mail.yaws │ │ └── reply.yaws │ ├── src │ │ ├── mail_vsn.template │ │ ├── defs.hrl │ │ ├── yaws-webmail.conf │ │ ├── attachment.erl │ │ └── Makefile │ ├── Makefile │ ├── TODO │ ├── include.mk │ └── README ├── wiki │ ├── ebin │ │ └── .keepme │ ├── vsn.mk │ ├── start.sh │ ├── src │ │ ├── wiki.erl │ │ ├── wiki_format_txt.erl │ │ ├── wiki_vsn.template │ │ ├── wiki_plugin_dummy.erl │ │ ├── wiki_plugin_backlinks.erl │ │ ├── Makefile │ │ ├── wiki_plugin_menu.erl │ │ └── utils.erl │ ├── wiki │ │ ├── Examples.wob │ │ ├── ALockedPage.wob │ │ ├── AnUnlockedPage.wob │ │ ├── WikiPreferences.wob │ │ ├── FormattingWikiPages.wob │ │ ├── WikiPreferences.files │ │ │ ├── ftp.png │ │ │ ├── url.png │ │ │ ├── back.gif │ │ │ ├── edit.gif │ │ │ ├── editme.gif │ │ │ ├── home.gif │ │ │ ├── http.png │ │ │ ├── https.png │ │ │ ├── icon.gif │ │ │ ├── index.gif │ │ │ ├── kamera.gif │ │ │ ├── mailto.png │ │ │ ├── allpages.gif │ │ │ ├── forward.gif │ │ │ ├── history.gif │ │ │ ├── zombies.gif │ │ │ ├── editfiles.gif │ │ │ ├── interwiki.png │ │ │ ├── lastedited.gif │ │ │ ├── template2.html │ │ │ ├── custom.css │ │ │ ├── template_info.html │ │ │ ├── template_info2.html │ │ │ └── template.html │ │ ├── getMidSize.yaws │ │ ├── getThumb.yaws │ │ ├── allRefsToMe.yaws │ │ ├── storePage.yaws │ │ ├── allPages.yaws │ │ ├── editFiles.yaws │ │ ├── editPage.yaws │ │ ├── editTag.yaws │ │ ├── lastEdited.yaws │ │ ├── wikiZombies.yaws │ │ ├── importFiles.yaws │ │ ├── showHistory.yaws │ │ ├── showOldPage.yaws │ │ ├── showPage.yaws │ │ ├── storeFiles.yaws │ │ ├── storeTagged.yaws │ │ ├── changePassword.yaws │ │ ├── copyFiles.yaws │ │ ├── createNewPage.yaws │ │ ├── deleteFiles.yaws │ │ ├── previewPage.yaws │ │ ├── previewTagged.yaws │ │ ├── putPassword.yaws │ │ ├── slideShow.yaws │ │ ├── storeNewPage.yaws │ │ ├── thumbIndex.yaws │ │ ├── finalDeletePage.yaws │ │ ├── previewNewPage.yaws │ │ ├── changePassword2.yaws │ │ ├── sendMeThePassword.yaws │ │ ├── index.yaws │ │ ├── addFile.yaws │ │ └── searchPage.yaws │ ├── wiki.conf │ ├── scripts │ │ ├── addFile.src │ │ ├── getPassword.src │ │ ├── importFiles.src │ │ ├── Makefile │ │ └── updateWiki.src │ ├── include.mk │ ├── Makefile │ └── README └── chat │ ├── chat │ ├── chat_read.yaws │ ├── cry.png │ ├── sad.png │ ├── angel.png │ ├── burp.png │ ├── cool.png │ ├── kiss.png │ ├── smile.png │ ├── think.png │ ├── wink.png │ ├── yell.png │ ├── bigsmile.png │ ├── farted.png │ ├── index.yaws │ ├── oneeye.png │ ├── scream.png │ ├── tongue.png │ ├── moneymouth.png │ ├── crossedlips.png │ ├── embarrassed.png │ ├── chat_write.yaws │ ├── login.yaws │ └── chat.yaws │ ├── Makefile │ ├── src │ └── Makefile │ └── include.mk ├── .gitignore ├── www ├── ssi_ex1 ├── END ├── small.yaws ├── favicon.ico ├── icons │ ├── a.gif │ ├── c.gif │ ├── f.gif │ ├── p.gif │ ├── dir.gif │ ├── dvi.gif │ ├── erl.gif │ ├── hrl.gif │ ├── pdf.gif │ ├── ps.gif │ ├── tar.gif │ ├── tex.gif │ ├── up.gif │ ├── uu.gif │ ├── back.gif │ ├── binary.gif │ ├── binhex.gif │ ├── blank.gif │ ├── bomb.gif │ ├── box1.gif │ ├── box2.gif │ ├── broken.gif │ ├── burst.gif │ ├── down.gif │ ├── folder.gif │ ├── image1.gif │ ├── image2.gif │ ├── image3.gif │ ├── index.gif │ ├── layout.gif │ ├── left.gif │ ├── link.gif │ ├── movie.gif │ ├── patch.gif │ ├── php4.gif │ ├── pie0.gif │ ├── pie1.gif │ ├── pie2.gif │ ├── pie3.gif │ ├── pie4.gif │ ├── pie5.gif │ ├── pie6.gif │ ├── pie7.gif │ ├── pie8.gif │ ├── portal.gif │ ├── quill.gif │ ├── right.gif │ ├── screw1.gif │ ├── screw2.gif │ ├── script.gif │ ├── sound1.gif │ ├── sound2.gif │ ├── text.gif │ ├── world1.gif │ ├── world2.gif │ ├── yaws.gif │ ├── yawsY.gif │ ├── yaws_y.gif │ ├── ball.red.gif │ ├── forward.gif │ ├── generic.gif │ ├── hand.up.gif │ ├── mailman.jpg │ ├── small │ │ ├── ps.gif │ │ ├── uu.gif │ │ ├── back.gif │ │ ├── blank.gif │ │ ├── burst.gif │ │ ├── comp1.gif │ │ ├── comp2.gif │ │ ├── dir.gif │ │ ├── dir2.gif │ │ ├── doc.gif │ │ ├── image.gif │ │ ├── index.gif │ │ ├── key.gif │ │ ├── movie.gif │ │ ├── patch.gif │ │ ├── sound.gif │ │ ├── tar.gif │ │ ├── text.gif │ │ ├── binary.gif │ │ ├── binhex.gif │ │ ├── broken.gif │ │ ├── forward.gif │ │ ├── generic.gif │ │ ├── image2.gif │ │ ├── rainbow.gif │ │ ├── sound2.gif │ │ ├── unknown.gif │ │ ├── compressed.gif │ │ ├── continued.gif │ │ ├── generic2.gif │ │ ├── generic3.gif │ │ ├── transfer.gif │ │ └── README.txt │ ├── sphere1.gif │ ├── sphere2.gif │ ├── transfer.gif │ ├── unknown.gif │ ├── yaws_pb.gif │ ├── alert.black.gif │ ├── alert.red.gif │ ├── apache_pb.gif │ ├── ball.gray.gif │ ├── comp.blue.gif │ ├── comp.gray.gif │ ├── compressed.gif │ ├── continued.gif │ ├── folder.open.gif │ ├── folder.sec.gif │ ├── generic.red.gif │ ├── generic.sec.gif │ ├── hand.right.gif │ ├── icon.sheet.gif │ ├── uuencoded.gif │ ├── yaws_head.gif │ ├── PythonPowered.png │ ├── gnu-head-tiny.jpg │ └── mailman-large.jpg ├── spacer.gif ├── simple_ex1.yaws ├── process_tree.dia ├── process_tree.png ├── compile_layout.dia ├── compile_layout.png ├── testdir │ └── index.html ├── .xvpics │ ├── hyber.org.gif │ └── hyber_org.jpg ├── shopingcart │ ├── junk.jpg │ ├── loginpost.yaws │ ├── buy.yaws │ ├── index.yaws │ ├── logout.yaws │ ├── shopcart_form.yaws │ ├── Makefile │ └── style.css ├── redirect3.yaws ├── redirect4.yaws ├── simple_ex2.yaws ├── ssi │ ├── dynamic.1 │ ├── dynamic.3 │ └── dynamic.2 ├── redirect2.yaws ├── simple_ex3.yaws ├── simple_ex4.yaws ├── END2 ├── code │ ├── Makefile │ └── myappmod.erl ├── HEAD ├── static.html ├── haxe_sample.html ├── haxe_sample.yaws ├── code.yaws ├── api.yaws ├── motivation.yaws ├── upload0.yaws ├── session.yaws ├── ybed.erl ├── contact.yaws ├── examples.yaws ├── urandom.yaws ├── man.yaws ├── stats.yaws ├── yaws-1.55_to_1.56.patch ├── arg2.yaws ├── json_sample.html ├── session1.yaws ├── yman.yaws ├── doc.yaws ├── todo.yaws ├── json_sample.yaws ├── readpcookie.yaws ├── stats_ex.yaws ├── setcookie.yaws ├── pcookie.yaws ├── readcookie.yaws ├── contribs.yaws ├── form.yaws ├── cookies.yaws ├── stil.css ├── setpcookie.yaws ├── post.yaws ├── query.yaws └── stream.yaws ├── vsn.mk ├── ChangeLog ├── doc ├── yaws.tex └── Makefile ├── src ├── yaws_ls.erl ├── ymnesia.erl ├── yaws_rpc.erl ├── yaws_rss.erl ├── yaws_jsonrpc.erl ├── yaws_xmlrpc.erl ├── yaws.app.src ├── yaws.conf ├── yaws_ticker.erl ├── yaws_vsn.template ├── yaws_app.erl ├── yaws_generated.template ├── yaws_log_file_h.erl ├── yaws_404.erl └── yaws_debug.hrl ├── scripts ├── Subst ├── darwin │ ├── Yaws.plist │ ├── README │ └── Yaws.StartupItem ├── freebsd │ └── yaws.sh ├── make-upload ├── gentoo │ ├── yaws.ebuild │ ├── conf.d.yaws │ └── init.d.yaws ├── make-release ├── debian │ └── yaws.init.d ├── netbsd │ └── yaws.sh ├── redhat │ └── yaws.init.d └── Makefile ├── sourceforge-site ├── yaws_pb2.gif └── yaws_head3.gif ├── include ├── yaws_dav.hrl ├── erlsom.hrl └── yaws_api.hrl ├── man └── Makefile ├── ssl ├── yaws-key.pem └── yaws-cert.pem ├── c_src └── Makefile ├── Makefile ├── LICENSE └── include.mk.in /bin/.foobar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ebin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ebin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/include/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/yapp/doc/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | *.o 3 | -------------------------------------------------------------------------------- /applications/mail/ebin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/wiki/ebin/.keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /applications/yapp/ebin/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/ssi_ex1: -------------------------------------------------------------------------------- 1 | variable a = %a% 2 | -------------------------------------------------------------------------------- /vsn.mk: -------------------------------------------------------------------------------- 1 | YAWS_VSN=1.68 2 | 3 | 4 | -------------------------------------------------------------------------------- /applications/mail/vsn.mk: -------------------------------------------------------------------------------- 1 | WIKI_VSN=0.8 2 | -------------------------------------------------------------------------------- /applications/wiki/vsn.mk: -------------------------------------------------------------------------------- 1 | WIKI_VSN=0.8 2 | -------------------------------------------------------------------------------- /applications/yapp/vsn.mk: -------------------------------------------------------------------------------- 1 | YAPP_VSN=0.2.0 2 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mojombo/yaws/HEAD/ChangeLog -------------------------------------------------------------------------------- /applications/wiki/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | yaws -i -c wiki.conf 3 | -------------------------------------------------------------------------------- /www/END: -------------------------------------------------------------------------------- 1 |