// $Id: i18n.js,v 1.1.2.3 2009/01/20 20:35:55 nedjo Exp $ /** * Rewrite autocomplete inputs to pass the language of the node currently being * edited in the path. * * This functionality ensures node autocompletes get suggestions for the node's * language rather than the current interface language. */ Drupal.behaviors.i18n = function (context) { if (Drupal.settings && Drupal.settings.i18n) { $('form[id^=node-form]', context).find('input.autocomplete[value^=' + Drupal.settings.i18n.interface_path + ']').each(function () { $(this).val($(this).val().replace(Drupal.settings.i18n.interface_path, Drupal.settings.i18n.content_path)); }); } }; // $Id: color.js,v 1.6 2007/09/12 18:29:32 goba Exp $ 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(); }; ; $Id: fckeditor.info,v 1.2.2.2 2008/03/18 13:50:45 wwalc Exp $ name = FCKeditor description = "Enables the usage of FCKeditor (WYSIWYG) instead of plain text fields." core = 6.x ; Information added by drupal.org packaging script on 2010-03-13 version = "6.x-2.1" core = "6.x" project = "fckeditor" datestamp = "1268510707" ; $Id: help.info,v 1.4 2007/06/08 05:50:54 dries Exp $ name = Help description = Manages the display of online help. package = Core - optional version = VERSION core = 6.x ; Information added by drupal.org packaging script on 2010-03-04 version = "6.16" project = "drupal" datestamp = "1267662008" name = Block translation description = Enables multilingual blocks and block translation. dependencies[] = i18n dependencies[] = i18nstrings package = Multilanguage core = 6.x ; Information added by drupal.org packaging script on 2010-04-07 version = "6.x-1.4" core = "6.x" project = "i18n" datestamp = "1270669810" ; $Id: i18nviews.info,v 1.3.2.12 2010/03/03 17:39:24 jareyero Exp $ name = Views translation description = Translation of views strings and content selection for views. Requires Views 3.x dependencies[] = views dependencies[] = i18nstrings dependencies[] = i18ntaxonomy package = Multilanguage core = 6.x ; Information added by drupal.org packaging script on 2010-04-07 version = "6.x-1.4" core = "6.x" project = "i18n" datestamp = "1270669810" ; $Id: image_attach.info,v 1.4 2008/01/06 22:15:24 drewish Exp $ name = Image Attach description = Allows easy attaching of image nodes to other content types. package = Image dependencies[] = image core = 6.x ; Information added by drupal.org packaging script on 2010-01-16 version = "6.x-1.0-beta5" core = "6.x" project = "image" datestamp = "1263642608" ; $Id: image_import.info,v 1.4 2008/01/06 22:15:25 drewish Exp $ name = Image Import description = Allows batches of images to be imported from a directory on the server. package = Image dependencies[] = image core = 6.x ; Information added by drupal.org packaging script on 2010-01-16 version = "6.x-1.0-beta5" core = "6.x" project = "image" datestamp = "1263642608" ; $Id: imagecache.info,v 1.5 2008/05/30 15:46:59 dopry Exp $ name = ImageCache description = Dynamic image manipulator and cache. package = ImageCache dependencies[] = imageapi core = 6.x ; Information added by drupal.org packaging script on 2009-04-17 version = "6.x-2.0-beta9" core = "6.x" project = "imagecache" datestamp = "1239992507" ; $Id: imce.info,v 1.6 2008/02/27 18:03:46 ufku Exp $ name = "IMCE" description = "An image/file uploader and browser supporting personal directories and user quota." core = "6.x" ; Information added by drupal.org packaging script on 2009-09-25 version = "6.x-1.3" core = "6.x" project = "imce" datestamp = "1253890535" name = Language icons description = Adds icons to language links. dependencies[] = locale package = Multilanguage core = 6.x ; Information added by drupal.org packaging script on 2010-03-01 version = "6.x-2.0" core = "6.x" project = "languageicons" datestamp = "1267437008" ; $Id: lightbox2.info,v 1.1.6.4 2008/07/14 11:51:34 snpower Exp $ name = Lightbox2 description = Enables Lightbox2 for Drupal core = 6.x ; Information added by drupal.org packaging script on 2009-01-08 version = "6.x-1.9" core = "6.x" project = "lightbox2" datestamp = "1231421439" ; $Id: locale.info,v 1.6 2007/11/05 08:43:48 goba Exp $ name = Locale description = Adds language handling functionality and enables the translation of the user interface to languages other than English. package = Core - optional version = VERSION core = 6.x ; Information added by drupal.org packaging script on 2010-03-04 version = "6.16" project = "drupal" datestamp = "1267662008" /* $Id: node.css,v 1.5 2008/01/25 21:21:44 goba Exp $ */ .node-unpublished { background-color: #fff4f4; } .preview .node { background-color: #ffffea; } #node-admin-filter ul { list-style-type: none; padding: 0; margin: 0; width: 100%; } #node-admin-buttons { float: left; /* LTR */ margin-left: 0.5em; /* LTR */ clear: right; /* LTR */ } td.revision-current { background: #ffc; } .node-form .form-text { display: block; width: 95%; } .node-form .container-inline .form-text { display: inline; width: auto; } .node-form .standard { clear: both; } .node-form textarea { display: block; width: 95%; } .node-form .attachments fieldset { float: none; display: block; } .terms-inline { display: inline; } ; $Id: php.info,v 1.2 2007/06/08 05:50:55 dries Exp $ name = PHP filter description = Allows embedded PHP code/snippets to be evaluated. package = Core - optional version = VERSION core = 6.x ; Information added by drupal.org packaging script on 2010-03-04 version = "6.16" project = "drupal" datestamp = "1267662008" ; $Id: translation.info,v 1.1 2007/06/15 18:40:14 goba Exp $ name = Content translation description = Allows content to be translated into different languages. dependencies[] = locale package = Core - optional version = VERSION core = 6.x ; Information added by drupal.org packaging script on 2010-03-04 version = "6.16" project = "drupal" datestamp = "1267662008" ; $Id: user.info,v 1.4 2007/06/08 05:50:57 dries Exp $ name = User description = Manages the user registration and login system. package = Core - required version = VERSION core = 6.x ; Information added by drupal.org packaging script on 2010-03-04 version = "6.16" project = "drupal" datestamp = "1267662008" ; $Id: views_export.info,v 1.1 2008/06/12 16:17:25 merlinofchaos Exp $ name = Views exporter description = Allows exporting multiple views at once. package = "Views" dependencies[] = views core = 6.x ; Information added by drupal.org packaging script on 2010-04-08 version = "6.x-2.10" core = "6.x" project = "views" datestamp = "1270766108" ; $Id: pathauto.info,v 1.4.2.1 2009/03/21 00:28:54 freso Exp $ name = Pathauto description = Provides a mechanism for modules to automatically generate aliases for the content they manage. dependencies[] = path dependencies[] = token suggests[] = path_redirect core = 6.x ; Information added by drupal.org packaging script on 2010-02-27 version = "6.x-1.3" core = "6.x" project = "pathauto" datestamp = "1267299906" ; $Id: xmlsitemap_node.info,v 1.2.2.4 2009/05/05 21:53:44 earnie Exp $ name = XML sitemap node description = Add node links to the sitemap. package = XML sitemap dependencies[] = xmlsitemap core = "6.x" ; Information added by drupal.org packaging script on 2010-01-27 version = "6.x-1.2" core = "6.x" project = "xmlsitemap" datestamp = "1264572909"
Fatal error: Call to undefined function node_load() in /home/r2578699/krawcow.eu/includes/menu.inc on line 410