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

CQ5​Saver

by mavendc ALL

Plugin that will post files to CQ5's sling post servlet. Handles * dialog.xmls * .coffee files * .js and most any file that would live underneath your 'jcr_root' top level folder

Details

Installs

  • Total 512
  • Win 282
  • Mac 190
  • Linux 40
Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12 Jun 11 Jun 10 Jun 9 Jun 8 Jun 7 Jun 6 Jun 5 Jun 4 Jun 3 Jun 2 Jun 1 May 31 May 30 May 29 May 28 May 27 May 26 May 25 May 24 May 23 May 22 May 21 May 20 May 19 May 18
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 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
bitbucket.​org

Cscope

A plugin to post to CQ5, using sublime text. Leverages the SlingPostServlet (as documented here) http://sling.apache.org/documentation/bundles/manipulating-content-the-slingpostservlet-servlets-post.html.

Features

This plugin supports most file types that will be PUT or POST-ed to CQ5.

  1. jsp's / other scripting languages
  2. 'plain' xml files
  3. static files
  4. design_dialog.xml
  5. dialog.xml

TODO –> add .content.xml, cq_edit config.xml support TODO –> add HTTPS support

Installation

Check out the repo under your “Packages” directory or install via Package Control and restart Sublime Text 3. Please note, Sublime Text 2 is not supported at this time The package control name is 'CQ5-Saver'

Logging

Upon successful save to CQ5, the console will log the destination path and the corresponding status code response from the server to the std out. (press ctrl + tilde) - 204 : No Content (successful) - 201 : Content created (succesful)

Configuration

If you wish to change the way CscopeSublime behaves, you may pass arguments to override any of the following default variables

host = "http://localhost:4502/"
username = 'admin'
password = 'admin'

COFFEE_SUFFIX = ".coffee"
JS_SUFFIX = ".js"
XML_SUFFIX = ".xml"
COFFEXEC = 'coffee.cmd'
JCRROOT = "jcr_root\\"
ENC = 'utf-8'
DIALOG = "dialog.xml"
DESIGN_DIALOG = "design_dialog.xml"
JCR_CONTENT = ".content.xml"
CLIENTLIB = "clientlibs"
TIMEOUT = 2

Syntax for the args can be seen in the .sublime-commands file located in this repo (i.e.) –> “args”: {“host”: “http://localhost:4503/”, “username” : “admin”, “password” : “admin”}

Keybindings

  • Ctrl/ + Shift + s - Deploy to CQ5 on localhost:4502 with basic auth (admin:admin)

Coffee compilation

This plugin will compile 'on the fly', bare javascript from your .coffee files, directly to the corresponding JCR path

Notes

The plugin looks within the path for a folder labeled “jcr_root\”. This can be overriden by passing in an arg “JCRROOT”, in case your specific folder structure does not match jcr_root\apps\yourapp\blablabla

Bugs / Features / Forking

By all means, please fork this repo and update the code base if you find any room for improvement, of which I'm sure there is plenty. This is my first stab at using python. Please drop a bug in the issue tracker if you find any problems.

License

This whole package is distributed under the MIT license.