Configuration save button missing

2,059 views
Skip to first unread message

Kamal Ahmed

unread,
Mar 15, 2011, 2:13:50 PM3/15/11
to jenkins...@googlegroups.com
Hi,
Did anyone else notice that the save button for Configuration changes is missing from Jenkins 1.400 and up ?
or is it just me
Thanks,
-Kamal.

Karsten Dambekalns

unread,
Mar 15, 2011, 3:58:50 PM3/15/11
to jenkins...@googlegroups.com
Hi.

On 15.03.2011, at 19:13, Kamal Ahmed wrote:
> Did anyone else notice that the save button for Configuration changes is missing from Jenkins 1.400 and up ?

You mean system or job configuration? I have save buttons for both screens, in 1.401.

It does not save the git plugin's user.name and user.email settings, though...

Regards,
Karsten

Markus Fischer

unread,
Mar 15, 2011, 4:01:49 PM3/15/11
to jenkins...@googlegroups.com
On 15.03.2011 19:13, Kamal Ahmed wrote:
> Did anyone else notice that the save button for Configuration changes is
> missing from Jenkins 1.400 and up ?
> or is it just me

I'm running 1.401 and it's there in the job and system configuration
page (and I'm pretty sure it was there in 1.400; was configuring job
nearly every day ATM).

HTH,
- Markus

Andrew Bayer

unread,
Mar 15, 2011, 4:14:23 PM3/15/11
to jenkins...@googlegroups.com, Karsten Dambekalns
That's probably a bug in the git plugin - please open a bug at issues.jenkins-ci.org and I'll take a look.

A.

Kamal Ahmed

unread,
Mar 15, 2011, 4:17:25 PM3/15/11
to jenkins...@googlegroups.com
The "save" button is missing from Project --> Configure
This happened after i upgraded to 1.401 via apt-get on ubuntu

-Kamal.


From: Karsten Dambekalns <karsten.d...@gmail.com>
To: jenkins...@googlegroups.com
Sent: Tue, March 15, 2011 3:58:50 PM
Subject: Re: Configuration save button missing

Karsten Dambekalns

unread,
Mar 16, 2011, 5:59:44 AM3/16/11
to jenkins...@googlegroups.com, Andrew Bayer
Hi Andrew.

On 15.03.2011, at 21:14, Andrew Bayer wrote:
>> It does not save the git plugin's user.name and user.email settings, though...

> That's probably a bug in the git plugin - please open a bug at issues.jenkins-ci.org and I'll take a look.

http://issues.jenkins-ci.org/browse/JENKINS-9071

Regards,
Karsten

Kamal Ahmed

unread,
Mar 16, 2011, 6:12:31 AM3/16/11
to jenkins...@googlegroups.com
Should i also open one for:

1. Install Jenkins 1.3x on ubuntu 10.10
2. Upgrade to 1.401 using "apt-get install jenkins"
3. restart tomcat

The "save" button is no longer available for Projct --> Configure

Thanks,
-Kamal.

Kamal Ahmed

unread,
Mar 16, 2011, 8:02:23 AM3/16/11
to jenkins...@googlegroups.com
Hi,
Did anyone use Google Chart API, or the example
var xmlhttp = null;
if (window.XMLHttpRequest)
xmlhttp = new XMLHttpRequest();
else if (window.ActiveXObject) {
if (new ActiveXObject("Microsoft.XMLHTTP"))
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
else
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}
var url = document.location + "/api/xml?xpath=count%28//job[color=%22blue%22]%29div+count%28//job%29"
xmlhttp.open("GET", url, false);//false means synchronous
xmlhttp.send()
var buildSuccessFraction= xmlhttp.responseText
document.write('<img src="http://chart.apis.google.com/chart?chs=320x160&cht=gom&chd=t:' + buildSuccessFraction * 100.0 + '&chxt=x,y&chxl=y|0:||1:|failure|success">')
</script>

If i use this code , then get a static image, how can i make it dynamic which will move the arrow with respect to the build status.

reference : http://code.google.com/apis/visualization/documentation/gallery/genericimagechart.html#Example

or the example:

<html>
<head>

<script type='text/javascript'>
google.load("visualization", "1.0", {packages:["imagechart"]});
</script>
<script type='text/javascript'>
google.setOnLoadCallback(drawChart);
function drawChart() {
var dataTable = new google.visualization.DataTable();
dataTable.addColumn('string');
dataTable.addColumn('number');
dataTable.addColumn('string');

// Row data is [chl, data point, point label]
dataTable.addRows([
['January',40,undefined],
['February',60,'Initial recall'],
['March',60,'Product withdrawn'],
['April',45,undefined],
['May',47,'Relaunch'],
['June',75,undefined],
['July',70,undefined],
['August',72,undefined]
]);

var options = {cht: 'lc', chds:'0,160', annotationColumns:[{column:2, size:12, type:'flag', priority:'high'},]};

var chart = new google.visualization.ImageChart(document.getElementById('line_div'));
chart.draw(dataTable, options);
}
</script>
</head>
<body>
<div id='line_div'></div>
</body>

The question is how do i get the LIVE data from Jenkins instead of the static data :
dataTable.addRows([
['January',40,undefined],
['February',60,'Initial recall'],
['March',60,'Product withdrawn'],
['April',45,undefined],
['May',47,'Relaunch'],
['June',75,undefined],
['July',70,undefined],
['August',72,undefined]
]);

</html>

Slide

unread,
Mar 29, 2011, 7:07:56 PM3/29/11
to jenkins...@googlegroups.com
On Tue, Mar 15, 2011 at 1:17 PM, Kamal Ahmed <kamal22...@yahoo.com> wrote:
> The "save" button is missing from Project --> Configure
> This happened after i upgraded to 1.401 via apt-get on ubuntu
>
> -Kamal.
>
> ________________________________


I just installed the latest Jenkins under Tomcat 6. This is what I get
when I go to the main configuration page (missing "Save" button).

http://imgur.com/4MoLe

Any ideas?

slide

Slide

unread,
Mar 29, 2011, 7:40:41 PM3/29/11
to jenkins...@googlegroups.com

I had to go all the way back to 1.398 to get the "Save" button back.

slide

--
slide-o-blog
http://slide-o-blog.blogspot.com/

Kamal Ahmed

unread,
Mar 29, 2011, 7:48:49 PM3/29/11
to jenkins...@googlegroups.com
please paste the exception you are getting in /var/log/jenkins/jenkins.log
-Kamal.

Kamal Ahmed

unread,
Mar 29, 2011, 7:52:06 PM3/29/11
to jenkins...@googlegroups.com
did you apt-get remove jenkins and then manually installed it ?
-Kamal

Kamal Ahmed

unread,
Mar 29, 2011, 8:00:16 PM3/29/11
to jenkins...@googlegroups.com
ok i figured it out:

apt-get remove jenkins

then manually download 1.398
and install it via sudo dpkg -i jenkins_1.398_all.deb
-K

Slide

unread,
Mar 29, 2011, 8:09:39 PM3/29/11
to jenkins...@googlegroups.com, Kamal Ahmed
I'm not using Ubuntu (or any Linux) this is on Windows Server 2003.

slide

--
slide-o-blog
http://slide-o-blog.blogspot.com/

Richard Bywater

unread,
Mar 29, 2011, 8:26:50 PM3/29/11
to jenkins...@googlegroups.com
I notice in the screenshot that the output seems to end in between the Email-ext plugins' Content Token Reference label and the question mark icon thats supposed to show.

Are you guys both using Email-ext plugin and if so what version?

Richard.

Slide

unread,
Mar 29, 2011, 8:27:45 PM3/29/11
to jenkins...@googlegroups.com, Richard Bywater
I am, but I also tried uninstalling it and I still had the same issue.

slide

--
slide-o-blog
http://slide-o-blog.blogspot.com/

Kamal Ahmed

unread,
Mar 29, 2011, 10:07:27 PM3/29/11
to jenkins...@googlegroups.com
i am using 2.12
-Kamal.

Kamal Ahmed

unread,
Mar 29, 2011, 10:43:19 PM3/29/11
to jenkins...@googlegroups.com
I am also getting the following error , when i clicked on Editable Email Notification --> Advanced Button

Status Code: null

Exception:
Stacktrace:
(none)


Generated by Winstone Servlet Engine v0.9.10 at Tue Mar 29 22:39:50 EDT 2011

Jason Wagner

unread,
Apr 17, 2011, 10:53:34 PM4/17/11
to Jenkins Users
I had a similar problem. What I noticed was that the last
configuration section was for a plugin that I disabled, in my case
Subversion. When I went to plugins->installed and turned subversion
back on, the page fully rendered and I could save.

Try turning on any plugins that are installed but disabled and see if
that fixes the problem.

Logan L

unread,
Apr 18, 2011, 2:39:00 PM4/18/11
to jenkins...@googlegroups.com
I would also like to see improved graphing and possible use of the google chart API or visualization API. I haven't seen any plugins that use this thou.

Someone should start one so that we can get the ball rolling. :)

Kamal Ahmed

unread,
Apr 20, 2011, 10:21:40 AM4/20/11
to jenkins...@googlegroups.com
we always have the option of creating a plugin :) anyone ?

Jesse Farinacci

unread,
Apr 20, 2011, 10:43:36 AM4/20/11
to jenkins...@googlegroups.com
Greetings,

On Wed, Apr 20, 2011 at 2:21 PM, Kamal Ahmed <kamal22...@gmail.com> wrote:
> we always have the option of creating a plugin :) anyone ?

I think this should be considered for an extension point. With the
default provider for graphing being the existing solution..

-Jesse

--
There are 10 types of people in this world, those
that can read binary and those that can not.

Reply all
Reply to author
Forward
0 new messages