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 c8a01e2d1a warning about versions. the pragma(msg) sucks less than myserious segfaults 2011-12-10 21:49:10 -05:00
README various updates 2011-12-03 22:38:12 -05:00
cgi.d if i knew id say... 2011-12-09 00:20:03 -05:00
characterencodings.d guessing function for utf 2011-11-20 11:50:47 -05:00
color.d the color module has a base type and some hsl functions so far. it's used by newer png, image algorithms, simpledisplay, and soon, html.d 2011-12-01 11:52:11 -05:00
csv.d adding the existing stuff 2011-07-15 08:48:59 -04:00
curl.d Merge commit '9d02' 2011-11-28 20:06:47 -05:00
database.d x64 fixes 2011-12-10 13:53:19 +01:00
dom.d <p><p> bug fixed in tag soup parser. I think that was the last major bug. 2011-12-10 20:58:53 -05:00
html.d dmd 2.056 const fixes 2011-12-01 21:29:49 -05:00
http.d some x64 fixes 2011-11-09 02:58:52 +01:00
httpd.d pretty old and fairly poor networking modules. ok for playing, not really for serious work. 2011-12-04 15:37:11 -05:00
mssql.d conflict cleanup i think 2011-11-29 10:01:21 -05:00
mysql.d warning about versions. the pragma(msg) sucks less than myserious segfaults 2011-12-10 21:49:10 -05:00
netman.d x64 fixes 2011-12-10 13:53:19 +01:00
png.d fix some compile stuff 2011-11-09 10:57:25 -05:00
postgres.d struct size is unknown 2011-08-13 01:34:24 +08:00
rtud.d Merge commit '4a57064' 2011-11-28 20:04:26 -05:00
sha.d using C files to get byByte 2011-12-05 12:51:10 -05:00
simpledisplay.d more x64 and warning fixes 2011-11-19 19:20:43 +01:00
sqlite.d some x64 fixes 2011-11-09 02:58:52 +01:00
web.d automatic forms were broken by typo! 2011-12-10 21:30:43 -05:00
web.d.php i forgot there are no friend classes in php.... 2011-12-09 00:19:04 -05: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

web.d.php - a PHP library meant to ease integration of php components
	    with web.d apps. Gives (read) access to the session, and full
	    access to your D ApiProviders.

html.d - functions to manipulate HTML documents, and now css and javascript
	 with DOM functions, nested css statements, and macros for css and js.

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
mssql.d     - a (super crappy) mssql engine for database.d (uses ODBC)

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

color.d - a basic color struct and some HSL functions



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
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


Authors:

Thanks go to Nick Sabalusky, Trass3r, Stanislav Blinov, and maartenvd for input and patches.