This file is indexed.

/usr/share/pyshared/kdj/ui_editor.py is in libkate-tools 0.4.1-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
import sys
import wx
from wx.py.editor import EditorNotebook
from wx.py.buffer import Buffer
from wx.py.editor import Editor
from constants import *
from tester import Tester

class UIEditor(wx.Dialog):
  def __init__(self,parent,tools,filename=None,format='kate'):
    pre=wx.PreDialog()
    pre.Create(parent,wx.ID_ANY,title='Editing Kate streams',pos=(100,100),size=(600,400),style=wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER)
    self.PostCreate(pre)

    self.tools=tools
    self.format=format

    box=wx.BoxSizer(wx.VERTICAL)
    self.SetSizer(box)

    self.notebook=EditorNotebook(self)
    box.Add(self.notebook,1,wx.EXPAND)
    self.notebook.Bind(wx.EVT_NOTEBOOK_PAGE_CHANGED,self.OnPageChanged)
    if filename!=None:
      self.addStream(filemame)

    buttons=wx.BoxSizer(wx.HORIZONTAL)
    box.Add(buttons)

    test=wx.Button(self,wx.ID_ANY,'Test')
    test.Bind(wx.EVT_BUTTON,self.OnTest)
    buttons.Add(test)

    save=wx.Button(self,wx.ID_SAVE,'Save')
    save.Bind(wx.EVT_BUTTON,self.OnSave)
    buttons.Add(save)

#    save_all=wx.Button(self,wx.ID_SAVE,'Save all')
#    save_all.Bind(wx.EVT_BUTTON,self.OnSaveAll)
#    buttons.Add(save_all)

    help=wx.Button(self,wx.ID_HELP,'Help')
    help.Bind(wx.EVT_BUTTON,self.OnHelp)
    buttons.Add(help)

    quit=wx.Button(self,wx.ID_EXIT,'Quit')
    quit.Bind(wx.EVT_BUTTON,self.OnQuit)
    buttons.Add(quit)

    self.buffers=[]

    self.Layout()
    self.Show(True)

  def addStream(self,filename):
     buffer=Buffer()
     panel=wx.Panel(parent=self.notebook,id=-1)
     panel.Bind(wx.EVT_ERASE_BACKGROUND,lambda x: x)
     editor=Editor(parent=panel)

     panel.editor=editor
     panel.buffer=buffer
     panel.filename=filename

     sizer=wx.BoxSizer(wx.VERTICAL)
     sizer.Add(editor.window,1,wx.EXPAND)
     panel.SetSizer(sizer)
     panel.SetAutoLayout(True)
     sizer.Layout()
     buffer.addEditor(editor)
     buffer.open(filename)
     self.notebook.AddPage(page=panel,text=buffer.name,select=True)
     if (self.notebook.GetPageCount()==1):
       self.OnPageSelected(0)
     self.buffers.append(buffer)
     editor.setFocus()

  def OnPageSelected(self,idx):
    self.current_panel=self.notebook.GetPage(idx)

  def OnPageChanged(self,event):
    new=event.GetSelection()
    self.OnPageSelected(new)
    event.Skip()

  def OnTest(self,event):
    try:
      tester=Tester(self.tools,self.current_panel.editor.getText(),self.format)
      wx.MessageBox('No errors found','Success',parent=self,style=wx.OK)
    except Exception,e:
      wx.MessageBox('Error:\n'+str(e),'Test failed',parent=self,style=wx.OK|wx.ICON_ERROR)

  def OnSave(self,event):
    self.current_panel.buffer.save()
    event.Skip()

  def OnSaveAll(self,event):
    for buffer in self.buffers:
      buffer.save()
    event.Skip()

  def getNumChanged(self):
    changed=0
    for buffer in self.buffers:
      if buffer.hasChanged():
        changed+=1
    return changed

  def OnHelp(self,event):
    wx.MessageBox(
      'Edit the decoded Kate stream, and save when done. '+
      '\n'+
      'Make liberal use of the Test button, which will tell you if any error is found in the stream. '+
      '\n'+
      'Note that there is no need to save before testing.'+
      '\n\n'+
      '',
      kdj_name+' help',
      parent=self,
      style=wx.OK|wx.CENTRE
    )

  def OnQuit(self,event):
    changed=self.getNumChanged()
    quit=True
    if changed>0:
      dlg=wx.MessageDialog(self,'There are unsaved changes. Quit anyway ?','Unsaved changes')
      if dlg.ShowModal()!=wx.ID_OK:
        quit=False
      dlg.Destroy()
    if quit:
      self.Close(True)