Changeset 2549 for trunk/tools


Ignore:
Timestamp:
Jan 28, 2000, 3:53:53 PM (26 years ago)
Author:
bird
Message:

Some update, adding email address.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/vslick/odin32.e

    r2505 r2549  
    1 /* $Id: odin32.e,v 1.1 2000-01-23 03:33:08 bird Exp $
     1/* $Id: odin32.e,v 1.2 2000-01-28 14:53:53 bird Exp $
    22 *
    33 * Visual SlickEdit Documentation Macros.
    44 *
    5  * Copyright (c) 1999-2000 knut st. osmundsen
     5 * Copyright (c) 1999-2000 knut st. osmundsen (knut.stange.osmundsen@pmsc.no)
    66 *
    77 * Project Odin Software License can be found in LICENSE.TXT
    88 *
    9  **
     9 ****
    1010 *
    1111 * This define the following keys:
     
    2424 * Ctrl+Shift+T: Makes tag file
    2525 *
    26  * Remember to set the correct sOdin32UserName and sOdin32UserInitials
     26 * Remember to set the correct sOdin32UserName, sOdin32UserEmail and sOdin32UserInitials
    2727 * before compiling and loading the macros into Visual SlickEdit.
    2828 *
     
    3232defeventtab default_keys
    3333def  'C-S-A' = odin32_signature
    34                def  'C-S-C' = odin32_classbox
    35                def  'C-S-F' = odin32_funcbox
    36                def  'C-S-G' = odin32_globalbox
    37                def  'C-S-H' = odin32_headerbox
    38                def  'C-S-I' = odin32_intfuncbox
    39                def  'C-S-K' = odin32_constbox
    40                def  'C-S-M' = odin32_modulebox
    41                def  'C-S-O' = odin32_oneliner
    42                def  'C-S-S' = odin32_structbox
    43                def  'C-S-T' = odin32_maketagfile
     34def  'C-S-C' = odin32_classbox
     35def  'C-S-F' = odin32_funcbox
     36def  'C-S-G' = odin32_globalbox
     37def  'C-S-H' = odin32_headerbox
     38def  'C-S-I' = odin32_intfuncbox
     39def  'C-S-K' = odin32_constbox
     40def  'C-S-M' = odin32_modulebox
     41def  'C-S-O' = odin32_oneliner
     42def  'C-S-S' = odin32_structbox
     43def  'C-S-T' = odin32_maketagfile
    4444
    4545
     
    4747#pragma option(redeclvars, on)
    4848#include 'slick.sh'
    49                _str sOdin32UserInitials = "kso";
     49
     50/* Remeber to change these! */
     51_str sOdin32UserInitials = "kso";
    5052_str sOdin32UserName     = "knut st. osmundsen";
     53_str sOdin32UserEmail    = "knut.stange.osmundsen@pmsc.no";
     54
    5155
    5256
     
    178182    _insert_text(" * @version     \n");
    179183    _insert_text(" * @verdesc     \n");
    180     _insert_text(" * @author      "sOdin32UserName"\n");
     184    _insert_text(" * @author      " sOdin32UserName " (" sOdin32UserEmail ")\n");
    181185    _insert_text(" * @approval    \n");
    182186    _insert_text(" */\n");
     
    205209        _insert_text("; @sketch    \n");
    206210        _insert_text("; @status    \n");
    207         _insert_text("; @author    "sOdin32UserName"\n");
     211        _insert_text("; @author    "sOdin32UserName" (" sOdin32UserEmail ")\n");
    208212        _insert_text("; @remark    \n");
    209213        up(10);
     
    220224        _insert_text(" * @sketch    \n");
    221225        _insert_text(" * @status    \n");
    222         _insert_text(" * @author    "sOdin32UserName"\n");
     226        _insert_text(" * @author    "sOdin32UserName" (" sOdin32UserEmail ")\n");
    223227        _insert_text(" * @remark    \n");
    224228        _insert_text(" */\n");
     
    299303    if (file_eq(p_extension, 'asm'))
    300304    {
    301         _insert_text("; $Id: odin32.e,v 1.1 2000-01-23 03:33:08 bird Exp $\n");
    302         _insert_text("; \n");
    303         _insert_text("; \n");
    304         _insert_text("; \n");
    305         _insert_text("; Copyright (c) " odin32_year() " "sOdin32UserName"\n");
     305        _insert_text("; $Id: odin32.e,v 1.2 2000-01-28 14:53:53 bird Exp $\n");
     306        _insert_text("; \n");
     307        _insert_text("; \n");
     308        _insert_text("; \n");
     309        _insert_text("; Copyright (c) " odin32_year() " "sOdin32UserName" (" sOdin32UserEmail ")\n");
    306310        _insert_text("; \n");
    307311        _insert_text("; Project Odin Software License can be found in LICENSE.TXT\n");
     
    312316    else
    313317    {
    314         _insert_text("/* $Id: odin32.e,v 1.1 2000-01-23 03:33:08 bird Exp $\n");
     318        _insert_text("/* $Id: odin32.e,v 1.2 2000-01-28 14:53:53 bird Exp $\n");
    315319        _insert_text(" * \n");
    316320        _insert_text(" * \n");
    317321        _insert_text(" * \n");
    318         _insert_text(" * Copyright (c) " odin32_year() " "sOdin32UserName"\n");
     322        _insert_text(" * Copyright (c) " odin32_year() " "sOdin32UserName" (" sOdin32UserEmail ")\n");
    319323        _insert_text(" *\n");
    320324        _insert_text(" * Project Odin Software License can be found in LICENSE.TXT\n");
Note: See TracChangeset for help on using the changeset viewer.