Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-12 | pool(2): fix ulong -> uintptr | cinap_lenrek | |
2014-02-01 | ip/torrent: print tracker errors/warnings in debug mode and allow setting peerid | mischief | |
2014-01-20 | malloc(2): update alloctag types | cinap_lenrek | |
2014-01-17 | Corrected some man pages. | aap | |
2014-01-06 | weather: trim garbage from output | stanley lieber | |
2014-01-01 | proc(3): the args file is writable, not read only (thanks qrstuv) | cinap_lenrek | |
2013-12-28 | mothra: add regular expression text search (thanks mischief, sl) | cinap_lenrek | |
this works differently from mischiefs original patch. instead of overloading the address bar, we popup our own enter box. the function can be invoked from the menu or by hitting ^F. | |||
2013-12-27 | cifs(4): replace with correct version | stanley lieber | |
2013-12-27 | cifs(4), cifsd(8): add HISTORY | stanley lieber | |
2013-12-27 | add HISTORY to various man pages | stanley lieber | |
2013-12-26 | audio(1): add pcmconv to HISTORY | stanley lieber | |
2013-12-26 | audio(3): fix spelling | stanley lieber | |
2013-12-26 | audio(1): add HISTORY, fix spelling | stanley lieber | |
2013-12-26 | add audio/mixfs to allow simultanious playback streams over a single /dev/audio | cinap_lenrek | |
2013-12-25 | json(2): fix out of order SOURCE heading | cinap_lenrek | |
2013-12-21 | merge | cinap_lenrek | |
2013-12-21 | page: implement bookmarks (thanks trav_ for starting it) | cinap_lenrek | |
add new functions pageaddr() that returns a string describing the page to be loaded. it is in the form of: /path/to/file!pagename!subpage!.... one can jump to such a page by calling trywalk(name, addr) where name and addr get concatinated with ! to form a page address and then the currently loaded pages are walked up to the nearest page which is then returned. (or nil when not found). the remaining address will be set in the global pagewalk variable. once pages get loaded (asynchronously), pagewalk1() gets called again on addpage() and continues the walking up to the last page. new program flag -j <addr> was added to jump to a page on startup. page address (without filename) can also be supplied in plumb message with the "addr" attribute. | |||
2013-12-19 | json(2): fix spelling error | stanley lieber | |
2013-12-19 | add medium to low quality json(2) manual page | cinap_lenrek | |
2013-12-11 | cifs(4): fix documentation for -d flag | cinap_lenrek | |
2013-12-09 | draw: fix drawing of replicated source image on memlayer with a clip rectangle | cinap_lenrek | |
when a replicated source image with a clipr with clipr.min > Pt(0, 0), drawclip() would properly translate the src->clipr on the dstr but then clamp the source rectangle back on src->r. while traversing down multiple layers, this would cause the translation to be applied multiple times to the dst rectangle giving the wrong image result. this change adds a new drawclipnorepl() function that avoids the clamping of source and mask rectangles to src->r and mask->r. this is then used in libmemlayer. the final memimagedraw() call will call drawclip() which will do the final claming. a testcase is provided: #include <u.h> #include <libc.h> #include <draw.h> Image *blue; Image *red; void main(int, char *argv[]) { Image *i; if(initdraw(nil, nil, argv[0]) < 0) sysfatal("initdraw: %r"); i = allocimage(display, screen->r, screen->chan, 1, DWhite); red = allocimage(display, Rect(0,0,1,1), screen->chan, 1, DRed); blue = allocimage(display, Rect(0,0,1,1), screen->chan, 1, DPaleblue); replclipr(red, 1, Rect(10, 10, 110, 110)); replclipr(blue, 1, Rect(11, 11, 111, 111)); /* draw on non-layer, works correctly */ draw(i, i->r, red, nil, ZP); draw(i, i->r, blue, nil, ZP); draw(screen, screen->r, i, nil, i->r.min); flushimage(display, 1); /* draw on (screen) layer is too far to the right */ draw(screen, screen->r, red, nil, ZP); draw(screen, screen->r, blue, nil, ZP); flushimage(display, 1); for(;;){ sleep(1000); } } | |||
2013-12-07 | mothra: remove debug code, dont create $home/lib/mothra/mothra.err file | cinap_lenrek | |
2013-12-05 | cpu: add -n flag for the remote site to allow "none" authentification method ↵ | cinap_lenrek | |
(inspired from sources cpu-noauth patch) | |||
2013-11-23 | removing (outdated) drawterm | cinap_lenrek | |
drawterm is much better maintained by russ cox, so removing this outdated copy. for a more recent version, go to: http://swtch.com/drawterm/ | |||
2013-11-12 | libmemdraw: change memimageinit() to return integer error (for kernel), ↵ | cinap_lenrek | |
minor cleanups | |||
2013-11-10 | arch(3): english | stanley lieber | |
2013-11-10 | arch(3), aml(2): document /dev/acpitbls file | cinap_lenrek | |
2013-11-10 | aml(2): tabelize by function, move hardware linkage on separate page | cinap_lenrek | |
2013-11-03 | aml(2): english | stanley lieber | |
2013-11-04 | aml(2): fix amldelay() decscription. it takes microseconds, not milliseconds. | cinap_lenrek | |
2013-11-03 | add aml(2) manual page | cinap_lenrek | |
2013-10-27 | auth/rsa2ssh: add SSH2 RSA output format (from plan9port) | mischief | |
2013-10-17 | keyboard(6): new <compose>x sequence, 21 bit runes. | cinap_lenrek | |
2013-10-17 | 9p(2): correct usage for srvrelease()/srvacquire() | cinap_lenrek | |
the process is *NOT* allowed to exit after a srvrelease() as it still holds a reference (srv->rref) preventing the srv from beging freed/ended (listensrv) before srvacquire(). | |||
2013-10-04 | add sdp(3) from sources | cinap_lenrek | |
2013-09-22 | mkfs(8): also list -U option in table | cinap_lenrek | |
2013-09-20 | rc-httpd(8): fix typo (thanks, _trav) | stanley lieber | |
2013-09-20 | hget(1): usage for webpaste | cinap_lenrek | |
2013-09-20 | pushssl(2), pushtls(2): clarify filedescriptor closing | cinap_lenrek | |
2013-09-20 | merge | cinap_lenrek | |
2013-09-20 | hpost: dont emit /bin/hpost but just hpost | cinap_lenrek | |
just emiting "hpost" makes it simpler to override it as a rc function. | |||
2013-09-20 | rename /rc/bin/ok to /rc/bin/webpaste | stanley lieber | |
2013-09-18 | pkg(1): fix for plan9.bell-labs.com; update repository list | stanley lieber | |
2013-09-18 | add /rc/bin/ok, tool for okturing.com pastebin | stanley lieber | |
2013-09-08 | dossrv(4): remove reference to a:, b:, c:, d: and 9fat: | cinap_lenrek | |
2013-08-31 | jpg(1), jpg: add -y flag to usage | ppatience0 | |
png: colorspace will never be CYCbCr (this is no doubt from copy-pasting from jpg) tif: everyone else uses colorspace as a function argument, so we will too readtif, writetif: credit paul bourke | |||
2013-08-23 | 2c(1), torrent(1), uhtml(1), kbd(3), cwfs(4), hgfs(4), cifsd(8), ↵ | stanley lieber | |
cryptsetup(8), hjfs(8), kbdfs(8), realemu(8), wpa(8): fix spelling, typos | |||
2013-08-23 | audio(1), hget(1), nusb(4), page(1): fix spelling, typos | stanley lieber | |
2013-08-23 | webfs(4): read the whole man page before committing corrections | stanley lieber | |
2013-08-23 | webfs(4): fix typo | stanley lieber | |