Re: Sectioned view section

2015-02-19 Thread Łukasz Tasz
looks like /dev/null pity :| Łukasz Tasz -- Forwarded message -- From: Łukasz Tasz luk...@tasz.eu Date: 2015-02-12 16:44 GMT+01:00 Subject: Re: Sectioned view section To: jenkinsci-dev@googlegroups.com Hi Guys, sorry for bothering you, is it really a big issue to arrange

Re: Sectioned view section

2015-02-12 Thread Łukasz Tasz
Hi Guys, sorry for bothering you, is it really a big issue to arrange releasing of this simple change? SectionedListView is missing setter of include regex that is kind of equivalent in Jenkins ListView, Can I commit such a change? with best regards Lukasz Łukasz Tasz 2015-02-03 10:29

Re: Sectioned view section

2015-02-03 Thread Łukasz Tasz
yep extension is like adding Public in front of includeRegex field... with best regards Lukasz Łukasz Tasz 2015-02-02 12:33 GMT+01:00 Daniel Beck m...@beckweb.net: Sorry about that, only now saw the earlier discussion. Would probably need to extend Sectioned View. On 02.02.2015, at 12:31,

Re: Sectioned view section

2015-02-02 Thread Daniel Beck
It has public getters and setters (since 1.526). The setter code will also show you why accessing the field directly would be a horrible idea. On 02.02.2015, at 10:56, Łukasz Tasz luk...@tasz.eu wrote: Hi Guys, any possiblilities to make field includeRegex public? regards Lukasz Łukasz

Re: Sectioned view section

2015-02-02 Thread Łukasz Tasz
Hi Guys, any possiblilities to make field includeRegex public? regards Lukasz Łukasz Tasz 2015-01-21 13:33 GMT+01:00 Łukasz Tasz luk...@tasz.eu: Im using and testing latest version with code: private String name; /** * Include regex string. */ String includeRegex; /** * Compiled

Re: Sectioned view section

2015-02-02 Thread Daniel Beck
Sorry about that, only now saw the earlier discussion. Would probably need to extend Sectioned View. On 02.02.2015, at 12:31, Daniel Beck m...@beckweb.net wrote: It has public getters and setters (since 1.526). The setter code will also show you why accessing the field directly would be a

Re: Sectioned view section

2015-01-21 Thread Łukasz Tasz
Hi, tried, does not work, it I'm touching includeRegex, jenkins claims that I'm changing read-only field, if @... claims not such property. would be realy nice to find something which does not require own plugin changes.. maitenance is then a hell thanks in advance L. Łukasz Tasz

Re: Sectioned view section

2015-01-21 Thread Robert Sandell
Ok, so you'll need to look at the code for the version of the plugin you are running. On Wed, Jan 21, 2015 at 11:51 AM, Łukasz Tasz luk...@tasz.eu wrote: Hi, tried, does not work, it I'm touching includeRegex, jenkins claims that I'm changing read-only field, if @... claims not such

Re: Sectioned view section

2015-01-21 Thread Robert Sandell
So try; def regexp = ^dupa123 d1e35.@includeRegex = regexp d1e35.@includePattern = Pattern.compile(regexp) On Tue, Jan 20, 2015 at 1:41 PM, Łukasz Tasz luk...@tasz.eu wrote: ok went throu! instead of: d1e35.columns.add(hudson.

Re: Sectioned view section

2015-01-21 Thread Łukasz Tasz
Im using and testing latest version with code: private String name; /** * Include regex string. */ String includeRegex; /** * Compiled include pattern from the includeRegex string. */ transient Pattern includePattern; includePattern I don't need to touch, since readResolve() will do this, all

Sectioned view section

2015-01-20 Thread Łukasz Tasz
Hi All!! I have a question, since you about view-section-plugin. I would like to create list-view-section in a automated way - not using gui, just from script console, so far so good: d1e28=new SectionedView(test section) d1e28.initSections() d1e35=new ListViewSection(STATUS,

Re: Sectioned view section

2015-01-20 Thread Robert Sandell
I think you can set the fields directly def regexp = ^dupa123 d1e35.includeRegex = regexp d1e35.includePattern = Pattern.compile(regexp) On Tue, Jan 20, 2015 at 9:58 AM, Łukasz Tasz luk...@tasz.eu wrote: Hi All!! I have a question, since you about view-section-plugin. I would like to

Re: Sectioned view section

2015-01-20 Thread Łukasz Tasz
ok went throu! instead of: d1e35.columns.add(hudson. model.Hudson.instance.ListViewColumn,DescriptorListViewColumngetDescriptorList(hudson.views.JobColumn.class)) it's enough to: d1e35.columns.add(new hudson.views.JobColumn) Guys, do you know whom we can trigger to make includeRegex field

Re: Sectioned view section

2015-01-20 Thread Łukasz Tasz
Hi Robert, this is what I tried, but then it claims that includeRegex is readOnly... SectionedViewSection has no setter, and field includeRegex is defined as: String includeRegex; public String includeRegex; is fixing issue, would be nice to have it also in official plugin. Now I'm strugling