<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/xhtml; charset=utf-8">
</head>
<body>
<div style="font-family:sans-serif"><div style="white-space:normal">
<p dir="auto">ASDF checks to make sure all of the initargs are defined when parsing a <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">defsystem</code>.  This is good for catching errors, but is terrible for extensibility. This means that any attempt to add additional metadata will be backwards incompatible.</p>

<p dir="auto">I can think of two ways to fix this:</p>

<ol>
<li value="1"><p dir="auto">Add a "garbage can" slot to <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">component</code> that will be filled with a property list, and allow programmers to do whatever they want here.  This doesn't seem great to me.</p></li>
<li value="2"><p dir="auto">Add a new <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">defsystem</code> parsing error class that is <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">unknown-component-property</code>, raise it when an unknown property is encountered and allow the user to continue, discarding the initarg and accompanying value.</p></li>
</ol>

<p dir="auto">The second alternative is what I favor.  It isn't great, because it will only maintain extensibility going forward, but I think it's the best we can do.</p>

<p dir="auto">I suppose that we could also add an initarg to tell ASDF to continue such errors silently.  I'd be inclined to suggest that this take an ASDF version expression as value, so that the error is quietly ignored only by ASDF versions below that.  This means that the property will start to be checked when it has become authoritative.</p>

<p dir="auto">Note that for one's own <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">system</code> and <code style="background-color:#F7F7F7; border-radius:3px; margin:0; padding:0 0.4em" bgcolor="#F7F7F7">component</code> subclasses, the set of initargs can be extended without any monkeying around.</p>
</div>
</div>
</body>
</html>