Archive
Archive for September, 2013
Jenkins URL Options
September 13, 2013
Leave a comment
http://[jenkins-server]/%5Bcommand%5D
available commands:
- exit shutdown jenkins
- restart restart jenkins
- reload to reload the configuration
Categories: Continuous Integration, Software Engineering
Jenkins web pages don’t render correctly in Chrome after a time of inactivity
September 13, 2013
Leave a comment
Happens semi-random, but whenever I leave the Jenkins page for an amount of time and then come back and hit refresh or with autorefresh enabled, the CSS seems to break.
Hitting refresh again does not fix it. However, holding shift while refreshing (forced refresh) fixes the issue and the page goes back to looking normal.
I’ve tried it in different browsers and it is happening there too.
Categories: Continuous Integration, Software Engineering
How to store Bitcoin client data files in any other folder
September 11, 2013
Leave a comment
Click on “Properties” of a shortcut to bitcoin-qt.exe and add -datadir=<your_path> at the end:
“C:\Program Files (x86)\Bitcoin\bitcoin-qt.exe” -datadir=D:\Data\BitcoinData
Categories: Misc
XML Schema minOccurs / maxOccurs default values
September 6, 2013
Leave a comment
Attribute | Description |
---|---|
id | Optional. Specifies a unique ID for the element |
maxOccurs | Optional. Specifies the maximum number of times the sequence element can occur in the parent element. The value can be any number >= 0, or if you want to set no limit on the maximum number, use the value “unbounded”. Default value is 1 |
minOccurs | Optional. Specifies the minimum number of times the sequence element can occur in the parent element. The value can be any number >= 0. Default value is 1 |
For more Informations have look at the XML Schema reference here.
Categories: Uncategorized