Tagged Questions
The jelly tag has no wiki summary.
2
votes
1answer
1k views
Jenkins Email-ext Jelly Scripts (High Level Overview)
My project has just integrated Jenkins as its CI server. We would love to use the Email-ext plugin to provide a customized email that gives our developers a reasonable overview of various metrics once ...
2
votes
1answer
395 views
Path functions available to Jelly script?
I'd like to be able to do things like separate the directory and file name from a full path in Hudson/Jenkins's jelly script.
For example if I have /dir1/dir2/dir3/file.ext I'd like to (in jelly ...
2
votes
1answer
1k views
Jelly script to reset the issue resolution in JIRA
I am trying to run a jelly script in JIRA to set the resolution to null for all my issues. The following script runs without errors and returns this:
<JiraJelly ...
1
vote
0answers
89 views
Reading and parsing external XML file in a Jelly Template
I'm using Jenkins 1.410 and Email-Ext 2.14. My project is a sanity check to verify a number of other builds, ensuring that their artifacts are being delivered properly and then to send out a summary ...
1
vote
1answer
260 views
Jenkins plugin - referring to global plugin settings in project plugin settings
I would like to wrote simple hudson plugin. I got stuck on one thing. I would like to be able to use global settings from global.jelly as defaults values for config.jelly.
Is it possible? How can I ...
1
vote
1answer
195 views
Hudson .jelly files edit not reflected
I edited a few .jelly files for Hudson, but it's not reflected. How do I restart Hudson ? I hope that this will display the HTML tag changes made in the .jelly files.
I am trying to change the look ...
1
vote
1answer
473 views
Jelly + JavaScript
I'm working with Hudson plugins. Jelly views are the most complicated thing for me.
So the question is how to use JavaScript code in Jelly scripts?
P.S. "Hello World" script is working good but ...
0
votes
1answer
42 views
Problems dynamically loading a Java class with Groovy
I am porting a Jelly script to Groovy and I am stuck on one line of code from the Jelly script which implements the new tag:
<j:new var="builder" classLoader="${it.class.classLoader}" ...
0
votes
0answers
13 views
netbeans run jelly tests parallel
I created a module suite and functional test suites for each module for netbeans 7.0.
Now I want to execute these jelly tests in parallel like starting a batch of suites in a separate jvm.
How can ...
0
votes
0answers
53 views
Kohana Jelly Paranoid Behavior
I'm trying to implement paranoid behavior in Kohana Jelly and I have this problem - I've added an event listener for "builder.before_select" that adds an "is_deleted" where clause, but I have a ...
0
votes
0answers
41 views
How to enable Jelly Tools in Netbeans
This is about GUI testing using Jelly/Jemmy on Netbeans IDE with Java language.
I've spend about one hour looking at this tutorial
http://platform.netbeans.org/tutorials/nbm-test.html
But the ...
0
votes
2answers
247 views
Compatibility issues using Jelly ORM with Kohana 3.2, time to move on?
I like Jelly ORM and I want to use it with Kohana 3.2. However, I'm receiving different errors as I try its various methods and actions.
I see the last update to Jelly ORM was more than year ago on ...
0
votes
0answers
84 views
How can I retrieve Javascript function returns from a Jelly file?
In my Jenkins plugin, I'm trying to retrieve a session id contained in the URL from a jelly file. To do this, I've created a Javascript function that returns the document URL, but how can I retrieve ...
0
votes
0answers
110 views
Reach a JavaScript var in Jelly
I have a checkbox:
< f:checkbox name="${attrs.checkboxName}" onclick="doToggleList(${attrs.checkboxName});"></f:checkbox>
That calls a javascript:
http://pastebin.com/6jjTqVzJ
I also ...
0
votes
1answer
355 views
Infinite loop in Jelly script for Jenkin's email-ext plugin. Why? [closed]
I'm trying to use the email-ext plugin in Jenkins to send an email containing all of the changes since the last successful build. I've pieced together the following, replacing the change set portion ...
0
votes
0answers
119 views
jenkins plugin - how to access other descriptor
i'm wondering if it is possible to access an other descriptor from a jelly file (global.jelly)?
The only way to fill data into a textbox for example is to use the DescriptorImpl, which is mounted in ...
0
votes
0answers
118 views
Jelly, kohana alias with condition
I'm trying to make this query with Jelly, Kohana 3.0 but can't.
SELECT `module_catalogue`.*,
`about` IS NULL AS `about_isnull`
FROM `module_catalogue`
ORDER BY `about_isnull`
...
0
votes
1answer
322 views
Configure the ext-mail of hudson
I have a grails project and I use hudson to follow different analysis. I want to send the report analysis (cobertura, codenarc, findbug) to the developer. However, I don't know how to use hudson's ...
0
votes
2answers
329 views
Kohana Jelly: how to quickly create an array from a Jelly collection?
Say you have a model Person. Each Person object can have many Friends (Field_HasMany).
If you want to get a simple array of name/id pairs for a given Person's friends, is it faster/better to get ...
0
votes
1answer
141 views
How do I grab the Kohana Jelly Timestamp pretty_format
I was wondering if anyone with some Jelly experience would happen know how one would go about grabbing the pretty_format version of a Timestamp out of a Jelly_Field_Timestamp?
I wouldn't mind doing ...
0
votes
2answers
308 views
Aggregate function in Kohana Jelly ORM
could you help me to find out how to insert aggregate function using Kohana - Jelly module?
I.E. i need to show result of following query :
SELECT COUNT('total_item') AS tot FROM items WHERE ...
0
votes
1answer
176 views
Using 'and' with Kohana Jelly
I am counting how many rows there are in a database that match two conditions
$rows = Jelly::select('brief')->where('creator_id', '=', $this->view->user->id, 'and', 'name', '=', ...
0
votes
2answers
459 views
Kohana: Jelly-Auth and Jelly-Formo won't play well together… cause errors
Trying to use the modules: Jelly-Auth and Jelly-Formo is causing 2 errors. Depending on how I arrange my boostrap file I can get rid of one error or the other but not both...
Error 1: Auth works ...
0
votes
1answer
158 views
Hudson Jelly file is failing to render internal tag
This Code is from a Hudson plugin. The problem is that the line
<aspen:featureTable support="${it.getLastBuild().getFeatureSupport()}" />
should render to a table inside the following ...
0
votes
2answers
213 views
Ko3 - Jelly Module - 500 Internal Error
This is driving me crazy. For some reason, Jelly module throws a 500 internal error. I have no idea why it does it, or how to solve this.
When I remove jelly module folder from the server or simply ...
0
votes
1answer
382 views
Whats wrong with the following JIRA Jelly + Soap Script?
anyone knows what wrong with the following Jira, Jelly + Soap script?
Assume the WSDL file is correct, since it works with soap directly.
<JiraJelly ...