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

Clickability Velocity

by user004 ALL

No description provided

Details

Installs

  • Total 874
  • Win 602
  • Mac 180
  • Linux 92
Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8 Dec 7 Dec 6 Dec 5 Dec 4 Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25 Nov 24 Nov 23 Nov 22 Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7
Windows 0 0 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1
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 0
Linux 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Clickability Velocity

Based on jampow's Velocty package, but modified to use Clickability's custom functions and version of Velocity. Somewhat built using the Template Language Reference Guide.

Less/Greater than means <optional>

Snippets

ArrayLists

Shortcut Output
al $util.newArrayList
.. [ start .. end ]
.addAll .addAll( arrayList )
.add .add( <index, >object )
.clear .clear()
.contains .contains( object )
.get .get( index )
.indexOf .indexOf( object )
.isEmpty .isEmpty()
.remove .remove( index )
.set .set( index, object )
.subList .subList( start, end )

CMS

Shortcut Output
content $cms.content<( id )>
link $cms.link<( <name/path><, index> )>
links $cms.links<( <name/path><, index><, size> )>
flinks $cms.filteredLinks( type<, name/path><, index><, size> )
clinks $cms.categorizedLinks( categorization, 'name/path', index, size )
cat $cms.getCategorization( [ 'sets' ], [ 'categories' ]<, match all> )
wss $cms.websiteSection<( name/path/id )>
parent cms.parent<( name/path/object )>
template $cms.template( name )
include $cms.include( name )

Media

Shortcut Output
media $cms.media( name/id<, type> )
tag $util.tag( media<, show attributes><, extra info> )
linkedTag $util.linkedTag( media<, show attributes><, extra info> )
unlinkedTag $util.unlinkedTag( media<, show attributes><, extra info> )
resizeImageTag $util.resizeImageTag( media<, percent/width><, height><, show attributes><, extra info> )
unlinkedResizeImageTag $util.unlinkedResizeImageTag( media<, percent/width><, height><, show attributes><, extra info> )

Dates

  • newDate
  • Date
  • Add
  • Now
  • Tomorrow
  • Yesterday
  • compareDates
  • currentYear
  • difference
  • getDate
  • getDay
  • getHours
  • getMinutes
  • getMonth
  • getSeconds
  • getTime
  • getTimezoneOffset
  • getYear
  • inSameDay
  • inSameHour
  • inSameMonth
  • inSameYear
  • isAfter
  • isBefore
  • isBetween
  • isEqualDate
  • isEqualTime
  • parseDate
  • toDateTime
  • whenIs

Directives

Shortcut Output
set #set( $name = expression )
end #end##

for:

#foreach( item in itemList )##
    ## statement
#end##

if:

#if( condition )##
    ## statement
#end##

else:

#else<if( condition )>##
    ## statement

HashMaps

Shortcut Output
hm $util.newHashMap

Helpers

Shortcut Output
$ $<!>{variable}
vc $velocityCount

#*:

#* ============================================================================
Company Name
Copyright, Year
Title: Template Name
========================================================================== *###

Math

Shortcut Output
double $math.newDouble( number )
float $math.newFloat( number )
int $math.newInt( number )
% $math.mod( integer, integer )
* $math.multiply( number, number )
+ $math.add( number, number )
- $math.subtract( number, number )
/ $math.divide( number, number )
abs $math.abs( number )
pow $math.pow( number, number )
rand $math.random
round $math.round( number )
sqrt $math.sqrt( number )

Requests

Shortcut Output
param $req.param( parameter )

Strings

Shortcut Output
charAt $string.charAt( string, index )
endsWith $string.endsWith( string, suffix )
equals $string.equals<IgnoreCase>( string )
hashCode $string.hashCode( string )
indexOf $string.indexOf( string, substring<, start> )
lastIndexOf $string.lastIndexOf( string, substring<, start> )
length $string.length( string )
removeSpaces $string.removeSpaces( string )
replaceAll $string.replaceAll( string, find, replace )
replaceFirst $string.replaceFirst( string, find, replace )
splitOnRegex $string.splitOnRegex( string, separatorRegex<, trimResults><, omitEmptyStrings> )
splitString $string.splitString( string, separator<, trimResults><, omitEmptyStrings> )
startsWith $string.startsWith( string, prefix )
substring $string.substring( string, start, end )
toLowerCase $string.toLowerCase( string )
toUpperCase $string.toUpperCase( string )
trim $string.trim( string )

Utilities

Shortcut Output
obj $util.newObject
type $util.type( object )
className $util.className( object )
isNull $util.isNull( object )

Debugging

Shortcut Output
log $codeDebug.log( string )
watchpoint $codeDebug.watchpoint<( string/arrayList )>