Re: meta-tag page
Dmg:
Following this rational, would it be possible to recommend something in the line of: Jack's way of doing it, by just naming the license feels too cryptic to me if I am reading the header, and does not explicitly state it is the license under which the file is made available to othersFrom a programmer's perspective I think the "cryptic" approach is FAR superior. There are lots of tools that can quickly examine files and return text with the pattern "SPDX-License-Identifier: ", and other tools that can trivially process the stuff after it. The above alternative is more work to process, and humans don't like unnecessary work :-). If you want more boilerplate with the goal of enforceability, you might try a format that's trivial to process, e.g.: SPDX-License-Notice: This file is licensed under the following license(s): SPDX-License-Identifier: MIT SPDX-License-More-Information: http://wiki.spdx.org/ --- David A. Wheeler |
|