This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| ORIGINAL OO CODE: | |
| var Vehicle = function (x, y, speed) { | |
| this.x = x; | |
| this.y = y; | |
| this.speed = speed; | |
| }; | |
| Vehicle.prototype.move = function() { | |
| this.x = this.x + this.speed * this.randomStep(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Validate Date is after today | |
| //GwtDate not available on service portal | |
| function onSubmit() { | |
| //Type appropriate comment here, and begin script below | |
| //validate that the start date is before the today's date | |
| var field = 'start_date'; | |
| var st = g_form.getValue(field); | |
| var newTime = new GwtDate(st); | |
| var tm = new GwtDate(); | |
| tm.now(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null"> | |
| <script> | |
| window.location.href = '/cms' | |
| </script> | |
| </j:jelly> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //script include global.choiceUtil | |
| //client callable true | |
| var choiceUtil = Class.create(); | |
| choiceUtil.prototype = Object.extendsObject(AbstractAjaxProcessor, { | |
| getHint: function() { | |
| try { | |
| var returnObj = {}; | |
| var hint = new GlideRecord('sys_choice'); | |
| hint.addQuery('name', this.getParameter('sysparm_table')); | |
| hint.addQuery('field', this.getParameter('sysparm_field')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Name: push comments to ritm | |
| //Table: Catalog Task | |
| //When: Before | |
| //Insert: false | |
| //Update: true | |
| (function executeRule(current, previous /*null when async*/) { | |
| try{ | |
| var sc_req_item = new GlideRecord('sc_req_item'); | |
| if(sc_req_item.get(current.request_item)){ | |
| sc_req_item.comments = current.comments; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*Business Rule: Automagically Link*/ | |
| /*Table: sys_journal_field*/ | |
| /*When: After*/ | |
| /*Order: 100*/ | |
| /*Insert: true*/ | |
| /*Update: true*/ | |
| /*jslint sloppy: true, vars: true*/ | |
| /*global GlideRecord, current, paddAndLinkRefs*/ | |
| function onAfter(current, previous) { | |
| //This function will be automatically called when this rule is processed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # put your instance id here | |
| instance="dev######" | |
| # make sure your password doesn't have shell operators in it | |
| credentials="admin:password" | |
| while true; do | |
| entropy=`rand` | |
| outdata="{\"short_description\":\"Automated incident $entropy\"}" |