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 bdf89ec6d1 typo in windows 2013-06-09 08:23:17 -04:00
LICENSE this stuff is mostly boost licensed 2011-12-15 15:53:50 -05:00
README my old pre-D1 game stuff, now compilable as D2 as well 2013-01-11 23:55:44 -05:00
audio.d ugh symlinks again 2013-01-11 23:58:21 -05:00
cgi.d initial websocket support 2013-06-06 23:01:52 -04:00
characterencodings.d catching up (again) 2013-05-30 18:45:26 -04:00
color.d dmd 2.061 2013-01-10 08:15:04 -05:00
csv.d adding the existing stuff 2011-07-15 08:48:59 -04:00
curl.d catch up 2013-04-11 07:59:49 -04:00
database.d catching up (again) 2013-05-30 18:45:26 -04:00
dom.d checking stuff after the root node in loose mode 2013-06-04 10:31:31 -04:00
domconvenience.d catching up on lots of changes. 2012-08-11 00:24:04 -04:00
email.d charset bug 2013-05-30 10:03:54 -04:00
engine.d catching up on random stuff 2013-02-16 11:18:15 -05:00
eventloop.d on idle handlers 2013-01-24 14:10:46 -05:00
html.d better sanitiations 2013-05-23 16:48:18 -04:00
htmltotext.d catch up 2013-04-11 07:59:49 -04:00
http.d idk 2012-08-24 17:36:57 -04:00
httpd.d lots of embedded httpd fixes 2012-02-05 21:03:18 -05:00
image.d catching up 2012-10-07 12:56:46 -04:00
jpg.d catching up on random stuff 2013-02-16 11:18:15 -05:00
lazypng.d some notes 2013-05-13 09:19:13 -04:00
mssql.d trying to make mssql.d work 2012-09-01 12:21:23 -04:00
mysql.d catch up 2013-04-11 07:59:49 -04:00
netman.d more standalone httpd compatibility 2012-02-06 00:28:32 -05:00
oauth.d catching up (again) 2013-05-30 18:45:26 -04:00
png.d new function that is hopefully more efficient with large images 2013-05-13 09:54:03 -04:00
postgres.d Fixed some property syntax issues. 2012-11-26 21:49:57 +01:00
querygenerator.d Documentation improvements. 2013-01-12 15:08:49 +01:00
rtud.d Merge branch 'master' of https://github.com/eskimor/misc-stuff-including-D-programming-language-web-stuff 2012-11-26 15:55:35 -05:00
screen.d deprecation fixes for dmd 2.061 2013-01-12 18:15:02 -05:00
sha.d catching up on lots of changes. 2012-08-11 00:24:04 -04:00
simpledisplay.d typo in windows 2013-06-09 08:23:17 -04:00
sqlite.d some x64 fixes 2011-11-09 02:58:52 +01:00
terminal.d this is a clone of my file from ConsoleD, i will continue to update both repos 2013-05-30 18:46:48 -04:00
web.d catching up (again) 2013-05-30 18:45:26 -04:00
web.d.php Merge branch 'master' of https://github.com/eskimor/misc-stuff-including-D-programming-language-web-stuff 2012-11-26 15:55:35 -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

Game stuff
=================

engine.d, screen.d, audio.d - a quick wrapper to SDL and OpenGL I used
         in the pre D1 days, now updated so it compiles as both D1 and
	 D2 (use the -d switch to dmd)

	 Requires some SDL bindings.

	 Eventually I'll redo it.

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

htmlwidget.d - a very small html widget
browser.d - a tiny browser based on htmlwidget.d
netman.d - old code 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 Sabalausky, Trass3r, Stanislav Blinov, and maartenvd for input and patches.