This file is indexed.

/usr/share/drupal6/modules/imagefield_assist/drupalimage/editor_plugin.js is in drupal6-mod-imagefield-assist 1.0~beta3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
// $Id: editor_plugin.js,v 1.1.2.5 2009/10/28 12:02:04 franz Exp $
(function() {
  // Load plugin specific language pack.
  tinymce.PluginManager.requireLangPack('imagefield_assist');

  tinymce.create('tinymce.plugins.ImageFieldAssistPlugin', {
    /**
     * Initialize the plugin, executed after the plugin has been created.
     *
     * This call is done before the editor instance has finished it's
     * initialization so use the onInit event of the editor instance to
     * intercept that event.
     *
     * @param ed
     *   The tinymce.Editor instance the plugin is initialized in.
     * @param url
     *   The absolute URL of the plugin location.
     */
    init : function(ed, url) {
      // Register the ImageAssist execCommand.
      ed.addCommand('ImageFieldAssist', function() {
        // captionTitle and captionDesc for backwards compatibility.
        var data = {nid: '', title: '', captionTitle: '', desc: '', captionDesc: '', link: '', url: '', align: '', width: '', height: '', id: ed.id, action: 'insert', lightbox: ''};
        var node = ed.selection.getNode();
        if (node.name == 'mceItemDrupalImage') {
          data.width = node.width;
          data.height = node.height;
          data.align = node.align;
          // Expand inline tag in alt attribute
          node.alt = decodeURIComponent(node.alt);
          var chunks = node.alt.split('|');
          for (var i in chunks) {
            chunks[i].replace(/([^=]+)=(.*)/g, function(o, property, value) {
              data[property] = value;
            });
          }
          data.captionTitle = data.title;
          data.captionDesc = data.desc;
          data.action = 'update';
        }
        
        ed.windowManager.open({
          file : Drupal.settings.basePath + 'index.php?q=imagefield_assist/load/tinymce&textarea=' + ed.id,
          width : 700 + parseInt(ed.getLang('imagefield_assist.delta_width', 0)),
          height : 500 + parseInt(ed.getLang('imagefield_assist.delta_height', 0)),
          inline : 1
        }, data);
      });

      // Register Image Assist button.
      ed.addButton('imagefield_assist', {
        title : 'imagefield_assist.desc',
        cmd : 'ImageFieldAssist',
        image : url + '/images/drupalimage.gif'
      });

      // Load ImageField Assist's CSS for editor contents on startup.
      ed.onInit.add(function() {
        if (!ed.settings.drupalimage_skip_plugin_css) {
          ed.dom.loadCSS(url + "/css/imagefield_assist.css");
        }
      });

      // Replace images with inline tags in editor contents upon data.save.
      // @todo Escape regular | pipes.
      ed.onBeforeGetContent.add(function(ed, data) {
        if (!data.save) {
          return;
        }
        jQuery.each(ed.dom.select('img', data.content), function(node) {
          if (this.name != 'mceItemDrupalImage') {
            return;
          }
          var inlineTag = '[imagefield_assist|' + decodeURIComponent(this.alt);
          inlineTag += '|align=' + this.align;
          inlineTag += '|width=' + this.width;
          inlineTag += '|height=' + this.height;
          inlineTag += ']';
          
          ed.dom.setOuterHTML(this, inlineTag);
        });
      });

      // Replace inline tags in data.content with images.
      ed.onBeforeSetContent.add(function(ed, data) {
        data.content = data.content.replace(/\[imagefield_assist\|([^\[\]]+)\]/g, function(orig, match) {
          var node = {}, chunks = match.split('|');
          for (var i in chunks) {
            chunks[i].replace(/([^=]+)=(.*)/g, function(o, property, value) {
              node[property] = value;
            });
          }
          node.name = 'mceItemDrupalImage';
          node.src = Drupal.settings.basePath + 'index.php?q=imagefield_assist/preview/' + node.fid + '/' + node.preset;
	  if (this.lightbox != '') light = '|lightbox=true';
	  else light = '';
          node.alt = 'fid=' + node.fid + '|preset=' + node.preset + light + '|title=' + node.title + '|desc=' + node.desc;
          if (node.link.indexOf(',') != -1) {
            var link = node.link.split(',', 2);
            node.alt += '|link=' + link[0] + '|url=' + link[1];
          }
          else {
            node.alt += '|link=' + node.link;
          }
          if (typeof node.url != 'undefined') {
            node.alt += '|url=' + node.url;
          }
          node.alt = encodeURIComponent(node.alt);
          return ed.dom.createHTML('img', node);
        });
        return;
      });

      // Add a node change handler, selects the button in the UI when an image is selected.
      ed.onNodeChange.add(function(ed, command, node) {
        command.setActive('imagefield_assist', node.nodeName == 'IMG' && ed.dom.getAttrib(node, 'name').indexOf('mceItemDrupalImage') != -1);
      });
    },

    /**
     * Return information about the plugin as a name/value array.
     */
    getInfo : function() {
      return {
        longname : 'ImageField Assist',
        author : 'Lourenzo Ferreira',
        authorurl : 'http://www.chuva-inc.com',
        infourl : 'http://drupal.org/project/imagefield_assist',
        version : "2.0"
      };
    }
  });

  // Register plugin.
  tinymce.PluginManager.add('imagefield_assist', tinymce.plugins.ImageFieldAssistPlugin);
})();