| Commit message (Expand) | Author | Age | Files | Lines |
* | added configure(), but this doesn't really fix those frking broken SDL apps | arg@mmvi | 2006-09-26 | 1 | -0/+18 |
* | fixed issue pointed out by Jukka | arg@mmvi | 2006-09-22 | 1 | -4/+0 |
* | implemented the maximization as I described on the mailinglist, this feels be... | arg@mmvi | 2006-09-22 | 1 | -37/+4 |
* | reviewed client.c | arg@mmvi | 2006-09-20 | 1 | -0/+1 |
* | offscreen client appearance fixes | arg@mmvi | 2006-09-15 | 1 | -0/+10 |
* | focus() enforces visibility of a client if not NULL | arg@mmvi | 2006-09-15 | 1 | -1/+1 |
* | removed a bunch of lines through making function signatures more consistent w... | Anselm R. Garbe | 2006-09-12 | 1 | -34/+16 |
* | small change to comments, renamed two set* functions in client.c into update* | Anselm R. Garbe | 2006-09-11 | 1 | -4/+4 |
* | added some comments | Anselm R. Garbe | 2006-09-11 | 1 | -3/+3 |
* | applied sanders patch of not manipulating sel 1.5 | Anselm R. Garbe | 2006-09-08 | 1 | -2/+4 |
* | hotfix | Anselm R. Garbe | 2006-09-07 | 1 | -1/+1 |
* | simplified unmanage | Anselm R. Garbe | 2006-09-07 | 1 | -8/+2 |
* | using a global stack for focus recovery on arrange() - seems to work great | Anselm R. Garbe | 2006-09-07 | 1 | -2/+14 |
* | no this is better | Anselm R. Garbe | 2006-09-06 | 1 | -7/+0 |
* | does this preserve z order for anthony? | Anselm R. Garbe | 2006-09-06 | 1 | -2/+7 |
* | maybe this might work | Anselm R. Garbe | 2006-09-06 | 1 | -0/+2 |
* | sanders solution is convincing and elegant | Anselm R. Garbe | 2006-09-06 | 1 | -8/+0 |
* | seems to preserve floating client z-layer order (even with reorder() calls) | Anselm R. Garbe | 2006-09-06 | 1 | -0/+8 |
* | moved transient_for tag inheritance to settags | Anselm R. Garbe | 2006-09-06 | 1 | -6/+2 |
* | no, reodering floating clients definately breaks the manage() policy which at... | Anselm R. Garbe | 2006-09-06 | 1 | -2/+0 |
* | no, ordering floating clients at the end seems better | Anselm R. Garbe | 2006-09-05 | 1 | -0/+2 |
* | simplified manage | Anselm R. Garbe | 2006-09-04 | 1 | -5/+2 |
* | hotfixing with sanders hint | Anselm R. Garbe | 2006-09-04 | 1 | -1/+3 |
* | fixing the issue ss="s">"NotFoundError": 8u16,
"NotSupportedError": 9u16,
"InUseAttributeError": 10u16,
"InvalidStateError": 11u16,
"SyntaxError": 12u16,
"InvalidModificationError": 13u16,
"NamespaceError": 14u16,
"InvalidAccessError": 15u16,
"TypeMismatchError": 17u16,
"SecurityError": 18u16,
"NetworkError": 19u16,
"AbortError": 20u16,
"URLMismatchError": 21u16,
"QuotaExceededError": 22u16,
"TimeoutError": 23u16,
"InvalidNodeTypeError": 24u16,
"DataCloneError": 25u16
}
type
DOMException* = ref object of JSError
name* {.jsget.}: string
code {.jsget.}: uint16
DOMResult*[T] = Result[T, DOMException]
jsDestructor(DOMException)
proc newDOMException*(message = ""; name = "Error"): DOMException {.jsctor.} =
let ex = DOMException(e: jeDOMException, name: name, message: message)
for it in NamesTable:
if it[0] == name:
ex.code = it[1]
break
return ex
template errDOMException*(message, name: string): untyped =
err(newDOMException(message, name))
func message0(this: DOMException): string {.jsfget: "message".} =
return this.message
proc addDOMExceptionModule*(ctx: JSContext) =
ctx.registerType(DOMException, JS_CLASS_ERROR, errid = opt(jeDOMException))
href='/acidbong/suckless/dwm/commit/client.c?h=5.7.2&id=2c0d1cc87bf084ed3f1cdb4be881fb4f64f5773a'>fixed a core dump | Anselm R.Garbe | 2006-08-14 | 1 | -1/+0 |
* | implemented restack behavior (floats are on top in tiled mode) | Anselm R.Garbe | 2006-08-14 | 1 | -18/+8 |
* | implement multi-tag selection through button3 click on the specific tag | Anselm R.Garbe | 2006-08-11 | 1 | -2/+2 |
* | applied Sander's patch as well | Anselm R.Garbe | 2006-08-11 | 1 | -2/+1 |
* | simplified unmanage | Anselm R.Garbe | 2006-08-11 | 1 | -7/+2 |