Changes between Initial Version and Version 31 of Ticket #380


Ignore:
Timestamp:
09/28/09 16:53:48 (15 years ago)
Author:
andrew_b
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #380

    • Property Status changed from new to accepted
    • Property Votes for changeset changed from to angel_il andrew_b
    • Property Severity changed from to approved
    • Property Cc pahan@… added
    • Property Type changed from task to enhancement
    • Property Component changed from mc-core to mc-skin
    • Property Priority changed from minor to major
    • Property Version changed from to master
    • Property Milestone changed from future releases to 4.7.0-pre3
    • Property Owner set to slavazanko
  • Ticket #380 – Description

    initial v31  
    11This just my thinks. We need to make simple work with color schemas in mc. 
    2  
    32All following examples (commands out) just for simple understanding, not real :) 
    4  
    53For example: 
    64{{{ 
     
    86standart.ini b&w.ini dark.ini 
    97}}} 
    10  
    118in ~/.mc/ini file: 
    129{{{ 
     
    1613... 
    1714}}} 
    18  
    1915But user may customize color scheme: 
    2016{{{ 
     
    2420... 
    2521}}} 
    26  
    2722 * if basename(skin) == skin, then file will be get from /usr/share/mc/skins directory. 
    2823Example of skin-file: 
     
    4742[viewer] 
    4843    ... 
    49  
    5044[editor] 
    5145    normal=lightgray;blue 
     
    5549    ... 
    5650}}} 
    57  
    58  
    5951 * Parameter '_default_' may be present in any section and MUST be present in [core] section; 
    6052 * Value of '_default_' parameter in [core] section MUST contain definition of two colors: foreground and background. In other sections value of this parameter MAY contain definition of two colors; 
     
    6254 * If some color in color pair don't specified, then this color will be taken from '_default_' parameter in current section; 
    6355 * section name '[skin]' must be reserved for internal usage. All other section names will free for use (relative to source code). 
    64  
    6556Is this good idea?