This is a collection of modules that I've released over the years. Most of them stand alone, or have just one or two dependencies in here, so you don't have to download this whole repo.
d
Go to file
Adam D. Ruppe 53ff8d3ca6 oops missed a version 2011-08-25 21:25:01 -04:00
README urls for more info 2011-07-24 11:16:30 -04:00
cgi.d oops missed a version 2011-08-25 21:25:01 -04:00
csv.d adding the existing stuff 2011-07-15 08:48:59 -04:00
curl.d adding the existing stuff 2011-07-15 08:48:59 -04:00
database.d make query data object easier to use with custom stuff 2011-08-07 23:37:56 -04:00
dom.d some contracts 2011-08-25 11:44:31 -04:00
http.d adding the existing stuff 2011-07-15 08:48:59 -04:00
mysql.d make query data object easier to use with custom stuff 2011-08-07 23:37:56 -04:00
png.d adding the existing stuff 2011-07-15 08:48:59 -04:00
postgres.d struct size is unknown 2011-08-13 01:34:24 +08:00
sha.d adding the existing stuff 2011-07-15 08:48:59 -04:00
simpleaudio.d adding the existing stuff 2011-07-15 08:48:59 -04:00
simpledisplay.d symlinks break git lol 2011-07-15 09:07:29 -04:00
sqlite.d adding the existing stuff 2011-07-15 08:48:59 -04:00
web.d gzip support. also needs a slightly customized std.zlib so it is on a version for now 2011-08-23 16:06:44 -04:00

README

This is a collection of modules I find generally useful.

Modules are usually independent; you don't need this whole directory
but it doesn't hurt to grab it all either.

Read more about the modules at these links (docs are still works in process):

cgi.d info: http://arsdnet.net/web.d/cgi.d.html
web.d info: http://arsdnet.net/web.d/web.d.html


Recent bigger changes:
	web.d can now accept file uploads via hackish thing - make a param with type "Cgi.UploadedFile"

Currently included are:

Web related
================

cgi.d  - base module for making webapps in D
dom.d  - an xml/html DOM based on what Javascript provides in browsers
web.d  - a fancier way to write web apps. Uses reflection to make functions
         accessible via url with minimal boilerplate in your code


Database related
================

database.d  - main interface to databases. Includes DataObject
mysql.d     - a mysql engine for database.d (most mature of the three)
postgres.d  - a postgres engne for database.d
sqlite.d    - a sqlite engine for database.d

Desktop app stuff
================

simpledisplay.d - gives quick and easy access to a window for drawing
simpleaudio.d - gives minimal audio output

Other
================

sha.d  - implementations of the SHA1 and SHA256 algorithms
png.d  - provides some png read/write support
curl.d - a small wrapper around the curl library
csv.d  - gives read support to csv files
http.d - a lighterweight alternative to curl.d



Things I might add once I clean up the files (this can be expedited upon
request, to an extent):

httpd.d - an embedded web server
oauth.d - client/server stuff for oauth1
html.d  - a bunch of dom translation functions. Think unobstructive javascript
          on the server side
browser.d - a very small html widget
netman.d - handles net connections  (required by httpd.d)
imagedraft.d - (temporary name) has algorithms for images
bmp.d   - gives .bmp read/write
dws.d  - a draft of my D windowing system (also includes some Qt code)
wav.d  - reading and writing WAV files
midi.d - reading and writing MIDI files