Ignore:
Timestamp:
Aug 26, 2007, 2:00:56 AM (18 years ago)
Author:
bird
Message:

Corrected the address of FSF and made the split file header default.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VSlickMacros/kdev.e

    r1081 r1085  
    12451245{
    12461246    int iCursorLine;
     1247    int fSplit = 0;
    12471248
    12481249    _begin_line();
     
    12521253
    12531254    k_javadoc_box_start('@file');
    1254     if (skLicense == 'VirtualBox')
    1255     {
     1255    if (skLicense == 'VirtualBox' || 1 /* it's now default */)
     1256    {
     1257        fSplit = 1;
    12561258        iCursorLine = p_RLine;
    12571259        k_javadoc_box_line();
     
    12771279    {
    12781280        if (skLicense == 'VirtualBox')
    1279             k_javadoc_box_line('Copyright (c) ' k_year() ' ' skCompany);
     1281            k_javadoc_box_line('Copyright (C) ' k_year() ' ' skCompany);
    12801282        else
    12811283        {
     
    12961298        case 'GPL':
    12971299            _str sProg = skProgram;
    1298             k_javadoc_box_line();
     1300            if (!fSplit)
     1301                k_javadoc_box_line();
    12991302            if (sProg == '')
    13001303                sProg = 'This program';
     
    13161319            k_javadoc_box_line('You should have received a copy of the GNU General Public License');
    13171320            k_javadoc_box_line('along with ' sProg '; if not, write to the Free Software');
    1318             k_javadoc_box_line('Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA');
     1321            k_javadoc_box_line('Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA');
    13191322            break;
    13201323
    13211324        case 'LGPL':
    13221325            sProg = skProgram;
    1323             k_javadoc_box_line();
     1326            if (!fSplit)
     1327                k_javadoc_box_line();
    13241328            if (sProg == '')
    13251329                sProg = 'This program';
     
    13291333                k_javadoc_box_line();
    13301334            }
    1331             k_javadoc_box_line(sProg ' is free software; you can redistribute it and/or modify');
    1332             k_javadoc_box_line('it under the terms of the GNU Lesser General Public License as published');
    1333             k_javadoc_box_line('by the Free Software Foundation; either version 2 of the License, or');
    1334             k_javadoc_box_line('(at your option) any later version.');
     1335            k_javadoc_box_line(sProg ' is free software; you can redistribute it and/or');
     1336            k_javadoc_box_line('modify it under the terms of the GNU Lesser General Public');
     1337            k_javadoc_box_line('License as published by the Free Software Foundation; either');
     1338            k_javadoc_box_line('version 2.1 of the License, or (at your option) any later version.');
    13351339            k_javadoc_box_line();
    13361340            k_javadoc_box_line(sProg ' is distributed in the hope that it will be useful,');
    13371341            k_javadoc_box_line('but WITHOUT ANY WARRANTY; without even the implied warranty of');
    1338             k_javadoc_box_line('MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the');
    1339             k_javadoc_box_line('GNU Lesser General Public License for more details.');
     1342            k_javadoc_box_line('MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU');
     1343            k_javadoc_box_line('Lesser General Public License for more details.');
    13401344            k_javadoc_box_line();
    1341             k_javadoc_box_line('You should have received a copy of the GNU Lesser General Public License');
    1342             k_javadoc_box_line('along with ' sProg '; if not, write to the Free Software');
    1343             k_javadoc_box_line('Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA');
     1345            k_javadoc_box_line('You should have received a copy of the GNU Lesser General Public');
     1346            k_javadoc_box_line('License along with ' sProg '; if not, write to the Free Software');
     1347            k_javadoc_box_line('Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA');
    13441348            break;
    13451349
Note: See TracChangeset for help on using the changeset viewer.