This file contains 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<meta name="author" content="hamster-applet" /> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js"></script> | |
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/base/jquery-ui.css" rel="stylesheet" /> |
This file contains 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
#!/usr/bin/php | |
<?php | |
// As of today you have to update the /etc/aliases to add the following line | |
// | |
// tuleap-123: "|/path/to/script.php 123" | |
// | |
// Where 123 is the id of the artifact. | |
// | |
// TODO: use postfix virtual/catchall to prevent having to modify the aliases | |
// foreach tuples (artifact, user) — see below for the email. |
This file contains 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
// ==UserScript== | |
// @name stack done cards | |
// @namespace tuleap | |
// @description Automatically stacks cards which are on the column «done» of the cardwall (Tuleap Agile Dashboard) | |
// @include https://tuleap.net/plugins/agiledashboard/* | |
// @version 1 | |
// @require http://tuleap.net/scripts/prototype/prototype.js | |
// @grant none | |
// ==/UserScript== |
This file contains 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
// ==UserScript== | |
// @name systray | |
// @namespace tuleap | |
// @include http://tuleap.net/* | |
// @include https://tuleap.net/* | |
// @version 2 | |
// @grant none | |
// @require http://tuleap.net/scripts/prototype/prototype.js | |
// ==/UserScript== | |
function addCss(cssString) { |
This file contains 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
Effect.OuterGlow = Class.create(Effect.Highlight, { | |
setup: function() { | |
// Prevent executing on elements not in the layout flow | |
if (this.element.getStyle('display')=='none') { this.cancel(); return; } | |
this.oldStyle = { boxShadow: this.element.getStyle('box-shadow') }; | |
}, | |
update: function(position) { | |
this.element.setStyle({ boxShadow: '0px 0px ' + Math.round(30 - 30 * position) + 'px ' + this.options.startcolor }); | |
}, | |
finish: function() { |
This file contains 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
// ==UserScript== | |
// @name Tuleap viewvc fix | |
// @namespace https://tuleap.net/ | |
// @include https://tuleap.net/* | |
// @include http://tuleap.net/* | |
// @include https://*.tuleap.net/* | |
// @include http://*.tuleap.net/* | |
// ==/UserScript== | |
var fileref = document.createElement("link"); |