aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2012-05-29venti: fix VtMaxLumpSizeAbhishek Kulkarni7-7/+7
R=rsc, adkulkar CC=plan9port.codebot http://codereview.appspot.com/6108047
2012-05-15plumb: remove debugging printRuss Cox1-1/+0
R=rsc http://codereview.appspot.com/6210059
2012-05-07venti: remove bloomlookuptime in statsDavid du Colombier1-3/+0
R=rsc http://codereview.appspot.com/6197057
2012-05-07venti: fix bloom in statsDavid du Colombier1-1/+4
R=rsc http://codereview.appspot.com/6201049
2012-05-02venti: fix writedonechan size in bloomDavid du Colombier1-1/+1
R=rsc http://codereview.appspot.com/6128063
2012-04-22venti: add bootstrap mode (write + no index)Russ Cox4-0/+9
R=rsc, rsc http://codereview.appspot.com/6097047
2012-04-07venti: fix typoRuss Cox1-1/+1
R=rsc http://codereview.appspot.com/5989059
2012-04-07venti: add arenapart support to wrarenaRuss Cox1-2/+16
R=rsc http://codereview.appspot.com/5988058
2012-04-04vacfs: remove 9P2000.u relicDavid du Colombier1-5/+0
R=rsc http://codereview.appspot.com/5970072
2012-03-05devdraw: fix mouse warping with multi-monitor on OS XDavid Jeannot1-3/+3
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5748043
2012-03-05mergeRuss Cox11-18/+21
2012-03-05Devdraw now waits for the image: this means thatDavid Jeannot1-74/+226
there is no more blank image when toggling fullscreen, when unminimizing, or at startup; this also means that we can live resize, but we only enable live resizing with Page, because it seems useless for other apps, and Acme and Sam bug with it. The tradeoff is that bottom corners are sometimes automatically rounded. There is a way to prevent the rounding here: http://parmanoir.com/Custom_NSThemeFrame but this would obfuscate the code. Instead, we make sure that the corners are always rounded. Closing the window while its content is updated causes an exception, without this patch. This seems to happen regularly with stats(1). This patch avoids a possible deadlock at startup, which I never experienced. If I recollect right, there is little chance that this happens on a multi-core CPU. Minimizing now activates next app in line, and Devdraw now stops drawing while minimized. R=rsc CC=plan9port.codebot http://codereview.appspot.com/5499043
2012-03-05devdraw: fix winsize (-W) on OS XDavid Jeannot1-5/+11
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5749043
2012-02-28devdraw: fix fullscreen on LionRuss Cox1-1/+6
Now, if you full-screen an app running on a secondary screen, it only takes over that monitor. It does not cause the primary screen to disappear. Code by David Jeannot. R=djeannot24 http://codereview.appspot.com/5708046
2012-02-19libmach, acid, db: 64-bit supportRuss Cox33-1057/+1993
2012-01-26venti: import venti/conf from plan 9David du Colombier2-0/+76
R=rsc http://codereview.appspot.com/5572066
2012-01-21libventi: add functions vtsha1 and vtsha1checkDavid du Colombier2-0/+29
These functions are equivalent to vtSha1 and vtSha1Check from the old libventi and are particularly used by Fossil. R=rsc http://codereview.appspot.com/5555064
2012-01-20devdraw: enable gestures on OS XDavid Jeannot1-183/+8
Remove swipe gestures. Keep only 2-finger pinching and 3-finger tapping. R=rsc CC=plan9port.codebot http://codereview.appspot.com/5498094
2012-01-20venti: fix settings in statsDavid du Colombier2-1/+2
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5558054
2012-01-19devdraw: make OS X resizer unobtrusiveDavid Jeannot1-4/+31
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5558051
2012-01-16devdraw: on OS X, add menu items "hide" and "plumb devdraw(1)"David Jeannot1-14/+22
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5505092
2012-01-16devdraw: OS X: neutralize menu and Dock bugs in fullscreen modeDavid Jeannot1-3/+9
Previously, the menu bar has been set to hidden instead of autohidden in fullscreen mode, because it appeared too easily. Occasionally however, it still appears. This patch makes sure it won't. With OS X Lion's fullscreen, the Dock is autohidden, but sometimes remains hidden. This bug comes with visual menu bar bugs during space transition and when exiting fullscreen. Those bugs happen after each Devdraw's activation, for example. This patch neutralizes them. R=rsc CC=plan9port.codebot http://codereview.appspot.com/5502091
2012-01-16devdraw: fix handling of compose key on OS XDavid Jeannot2-12/+15
This implementation is simpler to understand. It removes conflicts with other modifiers and with the virtual buttons. Pressing alt during a sequence now cancels it correctly. R=rsc CC=plan9port.codebot http://codereview.appspot.com/5507049
2012-01-16devdraw: remove old OS X codeDavid Jeannot5-1435/+0
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5528046
2012-01-16vac: fix segfault on DMSYMLINK or DMDEVICEDavid du Colombier1-4/+6
Fix segfault when the first archived file is DMSYMLINK or DMDEVICE. Reinitialize the buffer to zero before calling readlink. R=rsc CC=plan9port.codebot http://codereview.appspot.com/5500097
2012-01-16acme: claim input focus earlierDavid Jeannot1-2/+2
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5505091
2012-01-16cocoa devdraw: activation on receiving Ttop messagesDavid Jeannot3-2/+17
(The new variable "willactivate" is in the input structure "in", which is illogical. But this structure will soon be renamed "app". I postpone the renaming to avoid conflicts with simultaneous Codereview issues.) R=rsc CC=plan9port.codebot http://codereview.appspot.com/5504102
2012-01-16devdraw: OS X dead key supportDavid Jeannot1-0/+19
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5503086
2012-01-16venti: fix scacheprefetch statsDavid du Colombier1-0/+2
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5507045
2012-01-16libventi: handle rpc when not connectedDavid du Colombier1-0/+6
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5491051
2012-01-05fmt: delete 2-space codeRuss Cox1-18/+1
Typographers say its wrong. R=rsc http://codereview.appspot.com/5517046
2011-12-12libventi: fix segfault in vtreadpacket when not connectedDavid du Colombier1-0/+5
This problem happens especially in fossil/view when vtread can be called even if not connected to venti. The old libventi handle this case properly in the function vtRPC, which is called by vtReadPacket (client.c). R=rsc CC=plan9port.codebot http://codereview.appspot.com/5484044
2011-12-09Cocoa Devdraw: cursor fixDavid Jeannot3-117/+139
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5356050
2011-12-07vac: handle midDavid du Colombier1-0/+5
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5451114
2011-12-07aescbc: fix segfault on backspaceDavid du Colombier1-2/+5
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5440107
2011-11-30vacfs: fix segfault when no prefix specifiedDavid du Colombier1-1/+1
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5451052
2011-11-28mailfs: add -u user argumentDavid du Colombier3-6/+16
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5435052
2011-11-22mailfs: small fixes and plan 9 supportDavid du Colombier6-5/+35
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5429044
2011-11-21venti/mgr: various fixes and plan 9 supportDavid du Colombier1-55/+56
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5421047
2011-11-21venti: fix log url in statsDavid du Colombier1-1/+1
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5395043
2011-11-21upas: fix segfault when host not foundDavid du Colombier1-1/+4
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5370105
2011-11-17acme: fix arrow near end of textSean McKean1-6/+4
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5399050
2011-11-08Cocoa Devdraw: cursor, menu bar, old fs, activationDavid Jeannot1-20/+52
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5318054
2011-11-08venti: import changes from plan 9David du Colombier5-3/+8
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5325044
2011-11-08venti: fix vtcachealloc and VtMaxLumpSizeDavid du Colombier3-2/+14
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5309073
2011-11-08libventi: add functions reconn and redial for use with fossilDavid du Colombier2-0/+40
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5325046
2011-11-08venti: fix format on ulongDavid du Colombier4-5/+5
R=rsc CC=plan9port.codebot http://codereview.appspot.com/5328046
2011-10-25page: check for gs failureRuss Cox1-0/+8
2011-10-23devdraw: cocoa fixes, bigarrow support (thanks Marius Eriksen)Russ Cox3-3/+50
2011-10-23OS X PowerPC fixes (thanks Cameron Kaiser)Russ Cox4-2/+4