Remove outdated license text. See COPYING and the description at http://liero.be/ for more information. --- a/data/LIEROENG.TXT +++ b/data/LIEROENG.TXT @@ -11,14 +11,6 @@ ----------------------------------------------------------------------------- GENERAL STUFF - - Liero is freeware. What that means is that you don't have to pay - for it and using it has not been restricted in any way. You may - distribute it to anyone and anyhow WITHOUT ANY CHANGES MADE TO IT'S - CONTAINMENTS. - - The source code of this game is not distributed freely (neither - commercially). So if you thought that maybe you could... forget it. Liero is a wormgame with weapons for 2 players. The object of the game is definately what you think it is. Liero is excellent for --- a/data/LIERO.TXT +++ b/data/LIERO.TXT @@ -12,15 +12,6 @@ YLEISTˇ - Liero on freeware, mik„ tarkoittaa ett„ sen k„yt”st„ ei tarvitse - maksaa mit„„n eik„ k„ytt”„ ole rajoitettu mitenk„„n. Lieroa saa - kopioida kelle tahansa ja miten tahansa SISˇLT™ˇ MITENKˇˇN - MUUTTAMATTA. - - Todettakoon t„ss„ ett„ Lieron l„hdekoodi ei ole vapaassa (sen - enenp„„ kuin kaupallisessakaan) jakelussa. Joten jos ajattelit - ett„... niin j„t„ ajatukset sikseen. - Liero on kahden pelattava aseellinen matosimulaatiopeli. Pelin p„„m„„r„n„ on ep„ilem„tt„ se mit„ luuletkin. Liero sopii erinomaisen hyvin aggressioiden purkuun ja kaverin rokitt„miseen 523b4d6cad76d34e8dc2a7ec'>diff
path: root/gnu/services/authentication.scm
AgeCommit message (Expand)Author
2022-06-15services: configuration: Use *unspecified* instead of 'disabled....Use *unspecified* as a marker for field values that have not been set. Rationale: 'disabled may easily clash with user values for boolean fields, is confusing (i.e. its meaning is *not* boolean false, but unspecified) and it also passes silently through the symbol? predicate of a field of type symbol. * gnu/services/configuration.scm (configuration-missing-default-value): Renamed from configuration-no-default-value. (define-maybe-helper): Use *unspecified* instead of 'disabled, and make the default value optional. * gnu/home/services/desktop.scm (home-redshift-configuration): Change (maybe-xyz 'disabled) to maybe-xyz. * gnu/services/authentication.scm (nslcd-configuration): Likewise. * gnu/services/cgit.scm (repository-cgit-configuration): Likewise. * gnu/services/file-sharing.scm (serialize-maybe-string) (serialize-maybe-file-object): Use 'unspecified?' instead of (eq? val 'disabled). * gnu/services/messaging.scm (raw-content?): Likewise. (ssl-configuration): Change (maybe-xyz 'disabled) to maybe-xyz. (prosody-configuration): Likewise. * gnu/services/file-sharing.scm (transmission-daemon-configuration): Likewise. * gnu/services/messaging.scm (define-all-configurations): Use *unspecified* instead of 'disabled'. * gnu/services/networking.scm (opendht-configuration): Likewise. * gnu/services/pm.scm (tlp-configuration): Likewise. * gnu/services/telephony.scm (jami-account): Likewise. (jami-configuration): Likewise. * gnu/services/vpn.scm (openvpn-client-configuration): Likewise. * tests/services/configuration.scm ("maybe type, no default") ("maybe type, with default"): New tests. Signed-off-by: Ludovic CourtĆØs <ludo@gnu.org> Attila Lendvai