Changeset 203

Show
Ignore:
Timestamp:
04/09/2008 10:40:38 PM (9 months ago)
Author:
funkiedamouse
Message:

Corrected some comments, and added a docstring and version information to the plwm module.

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk

    • Property bzr:revision-id:v3-trunk0 set to
      158 david.bronke@g33xnexus.com-20080410033651-t6ztiogf838wo17v
    • Property bzr:revision-info set to
      timestamp: 2008-04-09 23:36:51.361999989 -0400
      committer: David Bronke <David.Bronke@g33xnexus.com>
      properties:
      branch-nick: plwm
  • trunk/plwm/__init__.py

    r201 r203  
    1717#    along with this program; if not, write to the Free Software 
    1818#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
     19 
     20"""PLWM - The Pointless Window Manager 
     21 
     22This module provides various window manager components, allowing you to build 
     23your own window manager. 
     24""" 
     25 
     26__version_number__ = (2, 6) 
     27 
     28__version_extra__ = 'a' 
     29 
     30__version__ = '.'.join(map(str, __version_number__)) + __version_extra__ 
    1931 
    2032__all__ = [ 'border', 
  • trunk/plwm/border.py

    r201 r203  
    4242    border_default_color = None 
    4343 
    44     # These two attributes are for backward compitability, and is 
     44    # These two attributes are for backward compatability, and are 
    4545    # equivalent to this: 
    4646    # border_default_color = FixedBorderColor(border_color_name, 
    47     #                                              border_focuscolor_name) 
     47    #                                         border_focuscolor_name) 
    4848    border_color_name = None 
    4949    border_focuscolor_name = None