summaryrefslogtreecommitdiff
path: root/sys/man
AgeCommit message (Collapse)Author
2014-02-12pool(2): fix ulong -> uintptrcinap_lenrek
2014-02-01ip/torrent: print tracker errors/warnings in debug mode and allow setting peeridmischief
2014-01-20malloc(2): update alloctag typescinap_lenrek
2014-01-17Corrected some man pages.aap
2014-01-06weather: trim garbage from outputstanley lieber
2014-01-01proc(3): the args file is writable, not read only (thanks qrstuv)cinap_lenrek
2013-12-28mothra: 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-27cifs(4): replace with correct versionstanley lieber
2013-12-27cifs(4), cifsd(8): add HISTORYstanley lieber
2013-12-27add HISTORY to various man pagesstanley lieber
2013-12-26audio(1): add pcmconv to HISTORYstanley lieber
2013-12-26audio(3): fix spellingstanley lieber
2013-12-26audio(1): add HISTORY, fix spellingstanley lieber
2013-12-26add audio/mixfs to allow simultanious playback streams over a single /dev/audiocinap_lenrek
2013-12-25json(2): fix out of order SOURCE headingcinap_lenrek
2013-12-21mergecinap_lenrek
2013-12-21page: 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-19json(2): fix spelling errorstanley lieber
2013-12-19add medium to low quality json(2) manual pagecinap_lenrek
2013-12-11cifs(4): fix documentation for -d flagcinap_lenrek
2013-12-09draw: fix drawing of replicated source image on memlayer with a clip rectanglecinap_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-07mothra: remove debug code, dont create $home/lib/mothra/mothra.err filecinap_lenrek
2013-12-05cpu: add -n flag for the remote site to allow "none" authentification method ↵cinap_lenrek
(inspired from sources cpu-noauth patch)
2013-11-23removing (outdated) drawtermcinap_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-12libmemdraw: change memimageinit() to return integer error (for kernel), ↵cinap_lenrek
minor cleanups
2013-11-10arch(3): englishstanley lieber
2013-11-10arch(3), aml(2): document /dev/acpitbls filecinap_lenrek
2013-11-10aml(2): tabelize by function, move hardware linkage on separate pagecinap_lenrek
2013-11-03aml(2): englishstanley lieber
2013-11-04aml(2): fix amldelay() decscription. it takes microseconds, not milliseconds.cinap_lenrek
2013-11-03add aml(2) manual pagecinap_lenrek
2013-10-27auth/rsa2ssh: add SSH2 RSA output format (from plan9port)mischief
2013-10-17keyboard(6): new <compose>x sequence, 21 bit runes.cinap_lenrek
2013-10-179p(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-04add sdp(3) from sourcescinap_lenrek
2013-09-22mkfs(8): also list -U option in tablecinap_lenrek
2013-09-20rc-httpd(8): fix typo (thanks, _trav)stanley lieber
2013-09-20hget(1): usage for webpastecinap_lenrek
2013-09-20pushssl(2), pushtls(2): clarify filedescriptor closingcinap_lenrek
2013-09-20mergecinap_lenrek
2013-09-20hpost: dont emit /bin/hpost but just hpostcinap_lenrek
just emiting "hpost" makes it simpler to override it as a rc function.
2013-09-20rename /rc/bin/ok to /rc/bin/webpastestanley lieber
2013-09-18pkg(1): fix for plan9.bell-labs.com; update repository liststanley lieber
2013-09-18add /rc/bin/ok, tool for okturing.com pastebinstanley lieber
2013-09-08dossrv(4): remove reference to a:, b:, c:, d: and 9fat:cinap_lenrek
2013-08-31jpg(1), jpg: add -y flag to usageppatience0
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-232c(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-23audio(1), hget(1), nusb(4), page(1): fix spelling, typosstanley lieber
2013-08-23webfs(4): read the whole man page before committing correctionsstanley lieber
2013-08-23webfs(4): fix typostanley lieber