ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Zenoss

by cluther ALL

Sublime Text 2 Package for Zenoss Development

Details

  • 2014.05.02.14.42.57
  • github.​com
  • github.​com
  • 11 years ago
  • 1 hour ago
  • 12 years ago

Installs

  • Total 2K
  • Win 2K
  • Mac 340
  • Linux 162
Jan 30 Jan 29 Jan 28 Jan 27 Jan 26 Jan 25 Jan 24 Jan 23 Jan 22 Jan 21 Jan 20 Jan 19 Jan 18 Jan 17 Jan 16 Jan 15 Jan 14 Jan 13 Jan 12 Jan 11 Jan 10 Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

SublimeZenoss

This is a Sublime Text 2 package that intends to make Zenoss ZenPack development easier.

This package contains the following tab triggered snippets:

  • XML (or ZCML) files:

    • zconfigure

      Generates a full boilerplate configure.zcml for your ZenPack. The following fields can then be set:

      1. shortname: Usually a lowercase representation of the ZenPack's name.
      2. ShortClassName: A Python class-friendly capitalization of shortname.
      3. DeviceClassName: The Python class name of any custom Device subclass contributed by the ZenPack.
    • zcopyright

      Adds the standard XML copyright header. By default it copyrights to Zenoss, Inc. So as you might imagine, it's more useful for Zenoss employees.

  • Python files:

    • zdevice

      Generates a full boilerplate for a Device subclass contributed by the ZenPack including the model class and the API interfaces and wiring.

      The following fields can be set:

      1. ClassName: Name of the Device subclass.
      2. attribute: Name of the first attribute for the class.
      3. string: Type for the attribute.
      4. Attribute: Friendly capitalized title for the attribute. Used in the user interface.
      5. TextLine: Zope schema type for the attribute.
    • zcomponent

      Generates a full boilerplate for a DeviceComponent subclass contributed by the ZenPack including the model class and the API interfaces and wiring.

      The fields are the same as for zdevice above.

    • zcopyright

      Adds the standard Python copyright header. By default it copyrights to Zenoss, Inc. So as you might imagine, it's more useful for Zenoss employees.

  • JavaScript files:

    • zjs

      Generates a simple anonymous function to prevent your ZenPack from interfering with the global scope. Also defines a ZC variable for easy access to the Zenoss.component namespace.

    • zcomponent

      Generates boilerplate required to create a custom user interface for a DeviceComponent subclass. This includes the human-friendly name registration and custom component grid panel.

      The following fields can be set:

      1. MetaType: The meta_type for the related DeviceComponent subclass. This is the same as ClassName from the Python zcomponent snippet.
      2. Singular Name: A human-friendly name for the component type in a singular context.
      3. Plural Name: A human-friendly name for the component type in a plural context.
      4. attribute: Name of the first attribute for the component. This is the same as attribute from the Python zcomponent snippet.
      5. Attribute: Friendly capitalized title for the attribute. This is used as the column header for the attribute.
    • zcopyright

      Adds the standard JavaScript copyright header. By default it copyrights to Zenoss, Inc. So as you might imagine, it's more useful for Zenoss employees.

Installing

With Package Control

The easiest way to install SublimeZenoss is through Package Control.

Once you install Package Control, restart ST2 and bring up the Command Palette (Command+Shift+P on OS X, Control+Shift+P on Linux/Windows). Select "Package Control: Install Package", wait while Package Control fetches the latest package list, then select Zenoss when the list appears. The advantage of using this method is that Package Control will automatically keep SublimeZenoss up to date with the latest version.

With Git

Clone the repository in your Sublime Text 2 Packages directory, located somewhere in user's "Home" directory:

git clone git://github.com/cluther/SublimeZenoss.git

Without Git

Download the latest source from GitHub and copy the whole directory into the Packages directory.

The "Packages" packages directory is located at:

  • OS X:

    ~/Library/Application Support/Sublime Text 2/Packages/
    
  • Linux:

    ~/.Sublime Text 2/Packages/
    
  • Windows:

    %APPDATA%/Sublime Text 2/Packages/