name = Devel
description = Various blocks, pages, and functions for developers.
package = Development
dependencies[] = menu
core = 6.x
; Information added by Drupal.org packaging script on 2014-02-05
version = "6.x-1.28"
core = "6.x"
project = "devel"
datestamp = "1391635706"
Warning: Cannot modify header information - headers already sent by (output started at /var/www/gotan.dk/tangofabrikken.dk/tangofabd5/sites/all/modules/devel/devel.info:13) in /var/www/gotan.dk/tangofabrikken.dk/tangofabd5/includes/bootstrap.inc on line 736
Warning: Cannot modify header information - headers already sent by (output started at /var/www/gotan.dk/tangofabrikken.dk/tangofabd5/sites/all/modules/devel/devel.info:13) in /var/www/gotan.dk/tangofabrikken.dk/tangofabd5/includes/bootstrap.inc on line 737
Warning: Cannot modify header information - headers already sent by (output started at /var/www/gotan.dk/tangofabrikken.dk/tangofabd5/sites/all/modules/devel/devel.info:13) in /var/www/gotan.dk/tangofabrikken.dk/tangofabd5/includes/bootstrap.inc on line 738
Warning: Cannot modify header information - headers already sent by (output started at /var/www/gotan.dk/tangofabrikken.dk/tangofabd5/sites/all/modules/devel/devel.info:13) in /var/www/gotan.dk/tangofabrikken.dk/tangofabd5/includes/bootstrap.inc on line 739
name = Drupal for Firebug Preprocessor
description = A helper extension for the Drupal for Firebug Firefox extension to do preprocessing of forms
package = Development
core = 6.x
; Information added by drupal.org packaging script on 2010-12-15
version = "6.x-1.4"
core = "6.x"
project = "drupalforfirebug"
datestamp = "1292378609"
Drupal.behaviors.color = function (context) {
// This behavior attaches by ID, so is only valid once on a page.
if ($('#color_scheme_form .color-form.color-processed').size()) {
return;
}
var form = $('#color_scheme_form .color-form', context);
var inputs = [];
var hooks = [];
var locks = [];
var focused = null;
// Add Farbtastic
$(form).prepend('
').addClass('color-processed');
var farb = $.farbtastic('#placeholder');
// Decode reference colors to HSL
var reference = Drupal.settings.color.reference;
for (i in reference) {
reference[i] = farb.RGBToHSL(farb.unpack(reference[i]));
}
// Build preview
$('#preview:not(.color-processed)')
.append('')
.addClass('color-processed');
var gradient = $('#preview #gradient');
var h = parseInt(gradient.css('height')) / 10;
for (i = 0; i < h; ++i) {
gradient.append('');
}
// Fix preview background in IE6
if (navigator.appVersion.match(/MSIE [0-6]\./)) {
var e = $('#preview #img')[0];
var image = e.currentStyle.backgroundImage;
e.style.backgroundImage = 'none';
e.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='" + image.substring(5, image.length - 2) + "')";
}
// Set up colorscheme selector
$('#edit-scheme', form).change(function () {
var colors = this.options[this.selectedIndex].value;
if (colors != '') {
colors = colors.split(',');
for (i in colors) {
callback(inputs[i], colors[i], false, true);
}
preview();
}
});
/**
* Render the preview.
*/
function preview() {
// Solid background
$('#preview', form).css('backgroundColor', inputs[0].value);
// Text preview
$('#text', form).css('color', inputs[4].value);
$('#text a, #text h2', form).css('color', inputs[1].value);
// Set up gradient
var top = farb.unpack(inputs[2].value);
var bottom = farb.unpack(inputs[3].value);
if (top && bottom) {
var delta = [];
for (i in top) {
delta[i] = (bottom[i] - top[i]) / h;
}
var accum = top;
// Render gradient lines
$('#gradient > div', form).each(function () {
for (i in accum) {
accum[i] += delta[i];
}
this.style.backgroundColor = farb.pack(accum);
});
}
}
/**
* Shift a given color, using a reference pair (ref in HSL).
*
* This algorithm ensures relative ordering on the saturation and luminance
* axes is preserved, and performs a simple hue shift.
*
* It is also symmetrical. If: shift_color(c, a, b) == d,
* then shift_color(d, b, a) == c.
*/
function shift_color(given, ref1, ref2) {
// Convert to HSL
given = farb.RGBToHSL(farb.unpack(given));
// Hue: apply delta
given[0] += ref2[0] - ref1[0];
// Saturation: interpolate
if (ref1[1] == 0 || ref2[1] == 0) {
given[1] = ref2[1];
}
else {
var d = ref1[1] / ref2[1];
if (d > 1) {
given[1] /= d;
}
else {
given[1] = 1 - (1 - given[1]) * d;
}
}
// Luminance: interpolate
if (ref1[2] == 0 || ref2[2] == 0) {
given[2] = ref2[2];
}
else {
var d = ref1[2] / ref2[2];
if (d > 1) {
given[2] /= d;
}
else {
given[2] = 1 - (1 - given[2]) * d;
}
}
return farb.pack(farb.HSLToRGB(given));
}
/**
* Callback for Farbtastic when a new color is chosen.
*/
function callback(input, color, propagate, colorscheme) {
// Set background/foreground color
$(input).css({
backgroundColor: color,
'color': farb.RGBToHSL(farb.unpack(color))[2] > 0.5 ? '#000' : '#fff'
});
// Change input value
if (input.value && input.value != color) {
input.value = color;
// Update locked values
if (propagate) {
var i = input.i;
for (j = i + 1; ; ++j) {
if (!locks[j - 1] || $(locks[j - 1]).is('.unlocked')) break;
var matched = shift_color(color, reference[input.key], reference[inputs[j].key]);
callback(inputs[j], matched, false);
}
for (j = i - 1; ; --j) {
if (!locks[j] || $(locks[j]).is('.unlocked')) break;
var matched = shift_color(color, reference[input.key], reference[inputs[j].key]);
callback(inputs[j], matched, false);
}
// Update preview
preview();
}
// Reset colorscheme selector
if (!colorscheme) {
resetScheme();
}
}
}
/**
* Reset the color scheme selector.
*/
function resetScheme() {
$('#edit-scheme', form).each(function () {
this.selectedIndex = this.options.length - 1;
});
}
// Focus the Farbtastic on a particular field.
function focus() {
var input = this;
// Remove old bindings
focused && $(focused).unbind('keyup', farb.updateValue)
.unbind('keyup', preview).unbind('keyup', resetScheme)
.parent().removeClass('item-selected');
// Add new bindings
focused = this;
farb.linkTo(function (color) { callback(input, color, true, false); });
farb.setColor(this.value);
$(focused).keyup(farb.updateValue).keyup(preview).keyup(resetScheme)
.parent().addClass('item-selected');
}
// Initialize color fields
$('#palette input.form-text', form)
.each(function () {
// Extract palette field name
this.key = this.id.substring(13);
// Link to color picker temporarily to initialize.
farb.linkTo(function () {}).setColor('#000').linkTo(this);
// Add lock
var i = inputs.length;
if (inputs.length) {
var lock = $('').toggle(
function () {
$(this).addClass('unlocked');
$(hooks[i - 1]).attr('class',
locks[i - 2] && $(locks[i - 2]).is(':not(.unlocked)') ? 'hook up' : 'hook'
);
$(hooks[i]).attr('class',
locks[i] && $(locks[i]).is(':not(.unlocked)') ? 'hook down' : 'hook'
);
},
function () {
$(this).removeClass('unlocked');
$(hooks[i - 1]).attr('class',
locks[i - 2] && $(locks[i - 2]).is(':not(.unlocked)') ? 'hook both' : 'hook down'
);
$(hooks[i]).attr('class',
locks[i] && $(locks[i]).is(':not(.unlocked)') ? 'hook both' : 'hook up'
);
}
);
$(this).after(lock);
locks.push(lock);
};
// Add hook
var hook = $('');
$(this).after(hook);
hooks.push(hook);
$(this).parent().find('.lock').click();
this.i = i;
inputs.push(this);
})
.focus(focus);
$('#palette label', form);
// Focus first color
focus.call(inputs[0]);
// Render preview
preview();
};
name = Database logging
description = Logs and records system events to the database.
package = Core - optional
version = VERSION
core = 6.x
; Information added by Drupal.org packaging script on 2015-06-17
version = "6.36"
project = "drupal"
datestamp = "1434567252"
name = System
description = Handles general site configuration for administrators.
package = Core - required
version = VERSION
core = 6.x
; Information added by Drupal.org packaging script on 2015-06-17
version = "6.36"
project = "drupal"
datestamp = "1434567252"
name = Trigger
description = Enables actions to be fired on certain system events, such as when new content is created.
package = Core - optional
version = VERSION
core = 6.x
; Information added by Drupal.org packaging script on 2015-06-17
version = "6.36"
project = "drupal"
datestamp = "1434567252"
.update .project {
font-weight: bold;
font-size: 110%;
padding-left: .25em; /* LTR */
height: 22px;
}
.update .version-status {
float: right; /* LTR */
padding-right: 10px; /* LTR */
font-size: 110%;
height: 20px;
}
.update .version-status .icon {
padding-left: .5em; /* LTR */
}
.update .version-date {
white-space: nowrap;
}
.update .info {
margin: 0;
padding: 1em 1em .25em 1em;
}
.update tr td {
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.update tr.error {
background: #fcc;
}
.update tr.error .version-recommended {
background: #fdd;
}
.update tr.ok {
background: #dfd;
}
.update tr.warning {
background: #ffd;
}
.update tr.warning .version-recommended {
background: #ffe;
}
.current-version, .new-version {
direction: ltr; /* Note: version numbers should always be LTR. */
}
.update tr.unknown {
background: #ddd;
}
table.update,
.update table.version {
width: 100%;
margin-top: .5em;
}
.update table.version tbody {
border: none;
}
.update table.version tr,
.update table.version td {
line-height: .9em;
padding: 0;
margin: 0;
border: none;
}
.update table.version .version-title {
padding-left: 1em; /* LTR */
width: 14em;
}
.update table.version .version-details {
padding-right: .5em; /* LTR */
}
.update table.version .version-links {
text-align: right; /* LTR */
padding-right: 1em; /* LTR */
}
.update table.version-security .version-title {
color: #970F00;
}
.update table.version-recommended-strong .version-title {
font-weight: bold;
}
.update .security-error {
font-weight: bold;
color: #970F00;
}
.update .check-manually {
padding-left: 1em; /* LTR */
}
if (Drupal.jsEnabled) {
$(document).ready(function() {
// I am assuming that all of the links are refering to an internal node
// add the attribute rel=facebox to all of the links I want to have a popup
$('div.view-field > a').attr('class', 'popup');
// on click of a link
$('a.popup').click(function(a) {
// Make sure that other stuff is closed. This seems to cause a problem in Fx2 and IE7.
$('div#calpopup').fadeOut();
$('div#calpopup').remove();
// create div to hold data and add it to the end of the body
var div = $('').attr('style','display: none');
div.appendTo(document.body);
// Locate Popup
var offset = $(this).offset();
// Check position with window width.
var offset_left = offset.left + 5;
if ($(window).width() < $('#calpopup').width() + offset.left) {
offset_left -= $('#calpopup').width() + 5;
if (offset_left < 0) {
offset_left = 0;
}
}
var offset_top = offset.top + 25;
if ($(window).height() < $('#calpopup').height() + offset_top) {
offset_top -= $('#calpopup').height() + 25;
if (offset_top < 0) {
offset_top = 0;
}
}
$('#calpopup').css('left', offset_left);
$('#calpopup').css('top', offset_top);
// Show Popup
$('#calpopup').fadeIn('slow');
// If sucessful call this
function domCallback(msg) {
$('#calpopup-body').html(msg);
}
// Get NodeID and ItemID
var ids = $(this).parent().parent().attr('class');
var arrs = ids.split(" ");
var arr = arrs[0].split(".");
var nid = arr[1];
var id = arr[4];
// fill the div with data
$.ajax({
type: "GET",
url: Drupal.settings.basePath + "?q=jcalendar/getnode/"+nid+"/"+ids,
success: function(msg){
domCallback(msg);
}
});
// On click of the close image
$('img#popup-close-img').click(function(x) {
$('div#calpopup').fadeOut();
$('div#calpopup').remove();
});
$(document).click(function(y) {
var $tgt = $(y.target);
if (!$tgt.parents().is('div#calpopup')) {
$('div#calpopup').fadeOut();
$('div#calpopup').remove();
$(document).unbind("click");
}
});
// Don't Follow the real link
return false;
});
});
}
; $Id$
name = Content Copy
description = Enables ability to import/export field definitions.
dependencies[] = content
package = CCK
core = 6.x
; Information added by Drupal.org packaging script on 2015-06-17
version = "6.x-2.10"
core = "6.x"
project = "cck"
datestamp = "1434568159"
name = language-neutral nodes
description = "New nodes should be language neutral by default, see http://drupal.org/node/258785#comment-2270102"
core = 6.x
package = zzz
name = Custom rulesets
description = Create custom, exportable, reusable access rulesets for applications like Panels.
core = 6.x
package = Chaos tool suite
dependencies[] = ctools
; Information added by Drupal.org packaging script on 2015-05-16
version = "6.x-1.13"
core = "6.x"
project = "ctools"
datestamp = "1431798183"
name = Custom content panes
description = Create custom, exportable, reusable content panes for applications like Panels.
core = 6.x
package = Chaos tool suite
dependencies[] = ctools
; Information added by Drupal.org packaging script on 2015-05-16
version = "6.x-1.13"
core = "6.x"
project = "ctools"
datestamp = "1431798183"
name = Date Locale
description = Allows the site admin to configure multiple formats for date/time display to tailor dates for a specific locale or audience.
package = Date/Time
dependencies[] = date_api
dependencies[] = locale
core = 6.x
; Information added by Drupal.org packaging script on 2014-03-31
version = "6.x-2.10"
core = "6.x"
project = "date"
datestamp = "1396284252"
Fatal error: Class 'DrupalWebTestCase' not found in /var/www/gotan.dk/tangofabrikken.dk/tangofabd5/sites/all/modules/faq/faq.test on line 12