summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorprashmohan <prashmohan>2006-09-13 17:33:12 +0000
committerprashmohan <prashmohan>2006-09-13 17:33:12 +0000
commit7d888bd271d2e2f7e48187bac905f9598593114a (patch)
treecd845d90e1e067b20cbe00eb35a487236cc3251f
parentef23196f5fe3a688de5c041b71e54033861b5b30 (diff)
New gedit files updated
-rwxr-xr-xgedit/AboutPlugin.py82
-rwxr-xr-xgedit/AutoSave.py112
-rwxr-xr-xgedit/AutoSave.xml7
-rwxr-xr-xgedit/CloseAll.py126
-rwxr-xr-xgedit/CloseAll.xml7
-rwxr-xr-xgedit/CreateSaveFile.py74
-rw-r--r--gedit/CreateSaveFile.xml5
-rwxr-xr-xgedit/EditFunctions.py262
-rw-r--r--gedit/EditFunctions.xml5
-rwxr-xr-xgedit/GeditKill.py50
-rwxr-xr-xgedit/HelpPlugin.py78
-rwxr-xr-xgedit/InvalidURL.py73
-rwxr-xr-xgedit/InvalidURL.xml4
-rwxr-xr-xgedit/LaunchGedit.py48
-rwxr-xr-xgedit/Plugins.py307
-rwxr-xr-xgedit/Plugins.xml5
-rwxr-xr-xgedit/PrinttoFile.py62
-rw-r--r--gedit/README39
-rwxr-xr-xgedit/SaveAll.py131
-rwxr-xr-xgedit/SaveAll.xml7
-rwxr-xr-xgedit/SearchFunctions.py173
-rwxr-xr-xgedit/SearchFunctions.xml6
-rwxr-xr-xgedit/SortPlugin_CaseSensitive.py138
-rwxr-xr-xgedit/SortPlugin_CaseSensitive.xml7
-rwxr-xr-xgedit/SortPlugin_RemoveDuplicates.py164
-rwxr-xr-xgedit/SortPlugin_RemoveDuplicates.xml5
-rwxr-xr-xgedit/SortPlugin_ReverseSort.py157
-rwxr-xr-xgedit/SortPlugin_ReverseSort.xml7
-rwxr-xr-xgedit/SyntaxHighlight.py101
-rwxr-xr-xgedit/SyntaxHighlight.xml17
-rwxr-xr-xgedit/ViewToolbarOptions.py70
-rw-r--r--gedit/click-cancel-opendialog.py117
-rw-r--r--gedit/click-cancel-saveas.py66
-rw-r--r--gedit/create-new-file.py92
-rw-r--r--gedit/file01
-rw-r--r--gedit/gedit-log.xml5231
-rwxr-xr-xgedit/gedit.py42
-rw-r--r--gedit/ldt1
-rw-r--r--gedit/ldt~1
-rw-r--r--gedit/readme23
-rw-r--r--gedit/run.xml21
-rw-r--r--gedit/t16
-rw-r--r--gedit/t1~5
-rw-r--r--gedit/t27
-rw-r--r--gedit/t2~6
45 files changed, 7571 insertions, 377 deletions
diff --git a/gedit/AboutPlugin.py b/gedit/AboutPlugin.py
new file mode 100755
index 0000000..a00b7b3
--- /dev/null
+++ b/gedit/AboutPlugin.py
@@ -0,0 +1,82 @@
+#############################################################################
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
+#
+# Copyright 2004 - 2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+#############################################################################
+
+
+from ldtp import *
+from ldtputils import *
+
+def testAboutPlugin():
+ try:
+ log('Testing About Plugin','info')
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuEdit;mnuPreferences')
+ waittillguiexist('dlggeditPreferences')
+ if guiexist('dlggeditPreferences')==1:
+ selecttab('dlggeditPreferences','ptl0','Plugins')
+ noofrows=getrowcount('dlggeditPreferences','tbl1')
+ i=0
+ while i<noofrows:
+ #select the row by its index
+ selectrowindex('dlggeditPreferences', 'tbl1',i)
+ #the celltext variable seems redundant
+ celltext=getcellvalue ('dlggeditPreferences', 'tbl1', i,1)
+ click('dlggeditPreferences','btnAboutPlugin')
+ waittillguiexist('dlgAbout*')
+ time.sleep(2)
+ if guiexist('dlgAbout*')==1:
+ log('About dialog Appears','info')
+ click('dlgAbout*','btnClose')
+ i=i+1
+ else:
+ log('About Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ click('dlggeditPreferences','btnClose')
+ else:
+ log('Preferences Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Testing About Plugin','error')
+ raise LdtpExecutionError(0)
+ return
+ log('Testing About Plugin Success','info')
+
+
+try:
+ log('Test About Plugin','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ testAboutPlugin()
+
+except:
+ log('Test About Plugin Failed','error')
+ raise LdtpExecutionError(0)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+time.sleep(3)
+if guiexist('dlgQuestion')==1:
+ click('dlgQuestion','btnClosewithoutSaving')
+log('Test About Plugin','testend')
+
+
diff --git a/gedit/AutoSave.py b/gedit/AutoSave.py
new file mode 100755
index 0000000..7e4f3ac
--- /dev/null
+++ b/gedit/AutoSave.py
@@ -0,0 +1,112 @@
+#############################################################################
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
+#
+# Copyright 2004 - 2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+#############################################################################
+
+
+from ldtp import *
+from ldtputils import *
+from string import *
+def testAutoFileSave(filename,str,noofminutes):
+ try:
+ log('Test Auto File Save','info')
+ #delays introduced intentionally
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuEdit;mnuPreferences')
+ time.sleep(5)
+ if guiexist('dlggeditPreferences') == 1:
+ selecttab ('dlggeditPreferences', 'ptl0', 'Editor')
+ if check('dlggeditPreferences','chkCreateabackupcopyoffilesbeforesaving')==0:
+ click('dlggeditPreferences','chkCreateabackupcopyoffilesbeforesaving')
+ if check('dlggeditPreferences','chkAutosavefilesevery')==0:
+ click('dlggeditPreferences','chkAutosavefilesevery')
+ setvalue ('dlggeditPreferences','sbtnminutes','1')
+ click('dlggeditPreferences','btnClose')
+ #open a file
+ selectmenuitem('*gedit','mnuFile;mnuClose')
+ selectmenuitem('*gedit','mnuFile;mnuOpenLocation')
+ waittillguiexist('dlgOpenLocation')
+ if guiexist('dlgOpenLocation')==1:
+ settextvalue('dlgOpenLocation','cboEnterthelocation(URI)ofthefileyouwouldliketoopen',filename)
+ click('dlgOpenLocation','btnOpen')
+ else:
+ log('Open Location dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ appendtext('*gedit','txt0',str)
+ #calculate the noofseconds to wait
+ noofseconds=(int(noofminutes))*60+10
+ time.sleep(noofseconds)
+ selectmenuitem('*gedit','mnuFile;mnuClose')
+ #check the contents of the file
+ if guiexist('dlgQuestion') == 0:
+ fp=open(filename,'r')
+ filecontents=fp.read()
+ if filecontents==str:
+ log('Test Auto File Save Success','info')
+ else:
+ log('Test Auto File Save Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ time.sleep(3)
+ else:
+ log('Preferences dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Test Auto File Save Failed ','error')
+ raise LdtpExecutionError(0)
+ return
+ log('Test Auto File Save Success','info')
+
+
+try:
+ log('Test Auto File Save','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ #get the data from the data xml
+ obj = LdtpDataFileParser(datafilename)
+ filename = obj.gettagvalue('file0')[0]
+ text=obj.gettagvalue('text')[0]
+ sampletext=obj.gettagvalue('sampletext')[0]
+ noofminutes=obj.gettagvalue('noofminutes')[0]
+ strlist=rsplit(text,':')
+ #Create the files if they dont exist
+ if os.path.exists(os.getcwd() + '/' + filename) == False:
+ a=open(filename,'w')
+ i=0
+ length=len(strlist)
+ while i<length:
+ a.write(strlist[i]+'\n')
+ i=i+1
+ a.close()
+ testAutoFileSave(filename,sampletext,noofminutes)
+except:
+ log('Test Auto File Save Failed','error')
+ raise LdtpExecutionError(0)
+time.sleep(5)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+time.sleep(5)
+if guiexist('dlgQuestion'):
+ click('dlgQuestion','btnClosewithoutSaving')
+log('Test Auto File Save','testend')
+
diff --git a/gedit/AutoSave.xml b/gedit/AutoSave.xml
new file mode 100755
index 0000000..2260bd5
--- /dev/null
+++ b/gedit/AutoSave.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<data>
+ <file0>t1</file0>
+ <text>sample text:asd:a</text>
+ <sampletext>hello</sampletext>
+ <noofminutes>1</noofminutes>
+</data>
diff --git a/gedit/CloseAll.py b/gedit/CloseAll.py
new file mode 100755
index 0000000..fd58b43
--- /dev/null
+++ b/gedit/CloseAll.py
@@ -0,0 +1,126 @@
+#############################################################################
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
+#
+# Copyright 2004 - 2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+#############################################################################
+
+
+from ldtp import *
+from ldtputils import *
+from string import *
+def testCloseAll(str,paths):
+ try:
+ log('Testing Close All Option','info')
+ #delay
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuDocuments;mnuCloseAll')
+ #open the files
+ for path in paths:
+ selectmenuitem('*gedit','mnuFile;mnuOpenLocation')
+ waittillguiexist('dlgOpenLocation')
+ if guiexist('dlgOpenLocation')==1:
+ settextvalue('dlgOpenLocation','txt0',path)
+ click('dlgOpenLocation','btnOpen')
+ else:
+ log('OpenLocation Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ time.sleep(3)
+ i=0
+ for path in paths:
+ time.sleep(3)
+ selecttab('*gedit','ptl1',path)
+ time.sleep(2)
+ remap('evolution','*gedit')
+ #the textbox name is generated here
+ textbox='txt'+ repr(i)
+ appendtext('*gedit',textbox,str);
+ i=i+1
+ #test close all with cancel
+ selectmenuitem('*gedit','mnuDocuments;mnuCloseAll')
+ time.sleep(5)
+ if guiexist('dlgQuestion')==1:
+ click('dlgQuestion','btnCancel')
+ else:
+ log('dlgQuestion does not appear','error')
+ raise LdtpExecutionError(0)
+ return
+ #test close all with CloseAll
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuDocuments;mnuCloseAll')
+ time.sleep(5)
+ if guiexist('dlgQuestion')==1:
+ if getrowcount('dlgQuestion','tblSelectthedocumentsyouwanttosave')==len(paths):
+ log('Test Close All Success','info')
+ click('dlgQuestion','btnClosewithoutSaving')
+ time.sleep(5)
+
+ else:
+ log('Question dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Test Close All Option Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ log('Test Close All Option Success','info')
+
+
+try:
+ log('Test Close All Option','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ #get the data from the data xml
+ obj = LdtpDataFileParser(datafilename)
+ fpath1= obj.gettagvalue('file0')[0] # file 1
+ fpath2=obj.gettagvalue('file1')[0] #file 2
+ str=obj.gettagvalue('text')[0]
+ sorttext=obj.gettagvalue('sorttext')[0]
+ strlist=rsplit(sorttext,':')
+ #Create the files if they dont exist
+ if os.path.exists(os.getcwd() + '/' + fpath1) == False:
+ a=open(fpath1,'w')
+ i=0
+ length=len(strlist)
+ while i<length:
+ a.write(strlist[i]+'\n')
+ i=i+1
+ a.close()
+ if os.path.exists(os.getcwd() + '/' + fpath2) == False:
+ a=open(fpath2,'w')
+ i=0
+ length=len(strlist)
+ while i<length:
+ a.write(strlist[i]+'\n')
+ i=i+1
+ a.close()
+ paths=[fpath1,fpath2]
+ testCloseAll(str,paths)
+except:
+ log('Test Close All Failed','error')
+ raise LdtpExecutionError(0)
+if guiexist('*gedit')==1:
+ selectmenuitem('*gedit','mnuFile;mnuQuit')
+ time.sleep(5)
+ if guiexist('dlgQuestion')==1:
+ click('dlgQuestion','btnClosewithoutSaving')
+ time.sleep(5)
+log('Test Close All','endtest')
diff --git a/gedit/CloseAll.xml b/gedit/CloseAll.xml
new file mode 100755
index 0000000..d545ac5
--- /dev/null
+++ b/gedit/CloseAll.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<data>
+ <file0>t1</file0>
+ <file1>t2</file1>
+ <text>sample text</text>
+ <sorttext>qqwedas:bweqw:xqwe:aweqasdasdw:eqweqw:sampltext</sorttext>
+</data>
diff --git a/gedit/CreateSaveFile.py b/gedit/CreateSaveFile.py
new file mode 100755
index 0000000..9436b18
--- /dev/null
+++ b/gedit/CreateSaveFile.py
@@ -0,0 +1,74 @@
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# N Srinivasan <raiden.202@gmail.com>
+#
+# Copyright 2004-2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
+from ldtp import *
+from ldtputils import *
+try:
+ obj = LdtpDataFileParser(datafilename)
+ fname = obj.gettagvalue('newfile')[0]
+ new_text = 'LDTP Testing'
+ log('Gedit-create-file','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ selectmenuitem('*gedit','mnuFile;mnuNew')
+ if selecttabindex('*gedit','ptl1',getrowcount('*gedit','tbl*') - 1) == 1:
+ log('New,unsaved document exists','info')
+ #insert some txt into the now opened tab
+ settextvalue('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-1),
+ new_text)
+ log('Inserted some text','info')
+ selectmenuitem('*gedit','mnuFile;mnuSaveAs')
+ if waittillguiexist('dlgSaveAs...') == 0:
+ log('Save as dialog does not appear','error')
+ raise LdtpExecutionError(0);
+ else:
+ settextvalue('dlgSaveAs...','txtName',fname)
+ click('dlgSaveAs...','btnSave')
+ time.sleep(2)
+ if guiexist('dlgQuestion') == 1:
+ log('File already exists.. Replacing','warning')
+ log('Change file name in gedit-data.xml to prevent this','info')
+ click('dlgQuestion','btnReplace')
+ waittillguinotexist('dlgQuestion')
+ time.sleep(5)
+ if guiexist('dlgSaveAs...') == 0:
+ log('File Saved','info')
+ else:
+ raise LdtpExecutionError(0)
+ selectmenuitem('*gedit','mnuDocuments;mnuCloseAll')
+ log('Checking if file was created','info')
+ f = open('ldt','r')
+ a = f.read()
+ if a.find(new_text) >= 0:
+ log('File was created, containing entered text','info')
+ else:
+ log('File was not created or has invalid data','error')
+ raise LdtpExecutionError(0)
+except:
+ log('Gedit-create-file failed','error')
+ raise LdtpExecutionError(0)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+time.sleep(5)
+log('Gedit-create-file','testend')
+
diff --git a/gedit/CreateSaveFile.xml b/gedit/CreateSaveFile.xml
new file mode 100644
index 0000000..252fe2a
--- /dev/null
+++ b/gedit/CreateSaveFile.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<data>
+ <!-- newfile - Give a file name that does not exist now -->
+ <newfile>ldt</newfile>
+</data>
diff --git a/gedit/EditFunctions.py b/gedit/EditFunctions.py
new file mode 100755
index 0000000..906d76f
--- /dev/null
+++ b/gedit/EditFunctions.py
@@ -0,0 +1,262 @@
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# N Srinivasan <raiden.202@gmail.com>
+#
+# Copyright 2004-2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+from ldtp import *
+from ldtputils import *
+import os
+def launch_app(fname):
+ try:
+ if os.path.exists(os.getcwd() + '/' + fname) == False:
+ a = open(fname,'w')
+ a.write('File 0')
+ a.close()
+ launchapp('nautilus ' + os.getcwd(),1)
+ waittillguiexist('frm*FileBrowser')
+ click('frm*FileBrowser','mnuViewasList') #ViewasList is a radio menu item
+ time.sleep(3)
+ selectrow('frm*FileBrowser','tblListView',fname)
+ doubleclickrow('frm*FileBrowser','tblListView',fname)
+ except:
+ raise LdtpExecutionError(0)
+
+def change(new_text):
+ try:
+ appendtext('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-1),
+ new_text)
+ changed_count = len(new_text)
+ return changed_count
+ except:
+ raise LdtpExecutionError(0)
+
+def revert(new_text,old_char_count):
+ try:
+ #change content and revert(gedit-08)
+ log('Gedit-revert','teststart')
+ change(new_text)
+
+ #revert..
+ selectmenuitem('*gedit','mnuFile;mnuRevert')
+ time.sleep(3)
+ if guiexist('dlgQuestion') == 1:
+ click('dlgQuestion','btnRevert')
+ else:
+ log('Revert confirmation does not appear','error')
+ raise LdtpExecutionError(0)
+ time.sleep(3)
+ if getcharcount('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-1)) == old_char_count :
+ log('Successfully reverted','info')
+ else:
+ log('Revert failed','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Gedit-revert failed','error')
+ log('Gedit-revert','testend')
+ raise LdtpExecutionError(0)
+ log('Gedit-revert','testend')
+
+def undo_redo(new_text,old_char_count):
+ #make 3 changes, undo all 3 one-by-one, then redo them one-by-one
+ try:
+ log('Test-undo-and-redo','teststart')
+ time.sleep(3)
+ i = count = 0
+ selectmenuitem('*gedit','mnuEdit;mnuSelectAll')
+ selectmenuitem('*gedit','mnuEdit;mnuCopy')
+
+ while i < 3:
+ #making changes ..
+ setcursorposition('*gedit','txt0',getcharcount('*gedit','txt0'))
+ selectmenuitem('*gedit','mnuEdit;mnuPaste')
+ time.sleep(2)
+ if i == 0:
+ count = (getcharcount('*gedit','txt0') - old_char_count)
+ i = i + 1
+ changed_count = old_char_count + (i * count)
+ print i,count,changed_count
+ while i > 0:
+ changed_count = changed_count - count
+ selectmenuitem('*gedit','mnuEdit;mnuUndo')
+ if getcharcount('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-1)) == changed_count:
+ log('Undo success','info')
+ else:
+ log('Undo failed','error')
+ raise LdtpExecutionError(0)
+ i = i - 1
+ time.sleep(3)
+ while i < 3:
+ changed_count = changed_count + count
+ selectmenuitem('*gedit','mnuEdit;mnuRedo')
+ if getcharcount('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-1)) == changed_count:
+ log('Redo success','info')
+ else:
+ log('Redo failed','error')
+ raise LdtpExecutionError(0)
+ i = i + 1
+ selectmenuitem('*gedit','mnuFile;mnuRevert')
+ time.sleep(3)
+ click('dlgQuestion','btnRevert')
+ time.sleep(5)
+ except:
+ log('Test-undo-and-redo-failed','error')
+ log('Test-undo-and-redo','testend')
+ raise LdtpExecutionError(0)
+ log('Test-undo-and-redo','testend')
+
+def save_existing(new_text,old_char_count):
+ try:
+ log('Gedit-edit-existing-file','teststart')
+ #add some text and save (gedit-03)
+ changed_count = change(new_text)
+ selectmenuitem('*gedit','mnuFile;mnuSave')
+ time.sleep(8)
+ #close tab..
+ selectmenuitem('*gedit','mnuFile;mnuQuit')
+ f = open(fname,'r')
+ a = f.read()
+ if a.find(new_text) >= 0:
+ log('Successfully added text','info')
+ else:
+ log('Text was not added','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Gedit-edit-existing-file failed','error')
+ log('Gedit-edit-existing-file','testend')
+ raise LdtpExecutionError(0)
+ log('Gedit-edit-existing-file','testend')
+ return a
+
+def copy_paste(old_text):
+ try:
+ log('Gedit-copy-paste','teststart')
+ launchapp('gedit ' + fname,1)
+ selectmenuitem('*gedit','mnuEdit;mnuSelectAll')
+ selectmenuitem('*gedit','mnuEdit;mnuCopy')
+ #Open new, temporary file
+ selectmenuitem('*gedit','mnuFile;mnuNew')
+ time.sleep(3)
+ selectmenuitem('*gedit','mnuEdit;mnuPaste')
+ if gettextvalue('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-1)) == old_text:
+ log('Text copied successfully','info')
+ #close the temporary file
+ selectmenuitem('*gedit','mnuFile;mnuClose')
+ waittillguiexist('dlgQuestion')
+ click('dlgQuestion','btnClosewithoutSaving')
+ time.sleep(3)
+ else:
+ log('Copy failed','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Gedit-copy-paste failed','error')
+ log('Gedit-copy-paste','testend')
+ raise LdtpExecutionError(0)
+ log('Gedit-copy-paste','testend')
+
+def cut_paste(old_text):
+ try:
+ log('Gedit-copy-paste','teststart')
+ selectmenuitem('*gedit','mnuEdit;mnuSelectAll')
+ selectmenuitem('*gedit','mnuEdit;mnuCut')
+ #Open new, temporary file
+ selectmenuitem('*gedit','mnuFile;mnuNew')
+ time.sleep(3)
+ selectmenuitem('*gedit','mnuEdit;mnuPaste')
+ if gettextvalue('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-1)) == old_text:
+ if getcharcount('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-2)) == 0:
+ log('Text moved successfully','info')
+ #close the temporary file
+ selectmenuitem('*gedit','mnuFile;mnuClose')
+ waittillguiexist('dlgQuestion')
+ click('dlgQuestion','btnClosewithoutSaving')
+ time.sleep(3)
+ selectmenuitem('*gedit','mnuFile;mnuRevert')
+ time.sleep(3)
+ click('dlgQuestion','btnRevert')
+ time.sleep(3)
+ else:
+ log('Cut-paste failed','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Gedit-cut-paste failed','error')
+ log('Gedit-cut-paste','testend')
+ raise LdtpExecutionError(0)
+ log('Gedit-cut-paste','testend')
+
+def delete_all():
+ try:
+ log('Gedit-delete-all-text','teststart')
+ selectmenuitem('*gedit','mnuEdit;mnuSelectAll')
+ selectmenuitem('*gedit','mnuEdit;mnuDelete')
+ if getcharcount('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-1)) == 0:
+ log('Deleted successfully','info')
+ selectmenuitem('*gedit','mnuFile;mnuRevert')
+ time.sleep(3)
+ click('dlgQuestion','btnRevert')
+ time.sleep(3)
+ else:
+ log('Only some or no text was deleted','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Gedit-delete-all-text failed','error')
+ log('Gedit-delete-all-text','testend')
+ raise LdtpExecutionError(0)
+ log('Gedit-delete-all-text','testend')
+
+try:
+ obj = LdtpDataFileParser(datafilename)
+ fname = obj.gettagvalue('file0')[0]
+ new_text = obj.gettagvalue('append-text')[0]
+ launch_app(fname)
+ time.sleep(10)
+ if guiexist('*gedit') == 1:
+ log('Opened existing file for edit..','info')
+ #get initial character count
+ r = getcharcount('*gedit',
+ 'txt' + str(getrowcount('*gedit','tbl0')-1))
+ revert(new_text,r)
+ undo_redo(new_text,r)
+ content = save_existing(new_text,r)
+ copy_paste(content)
+ cut_paste(content)
+ delete_all()
+ else:
+ log('Cannot launch gedit','error')
+ raise LdtpExecutionError(0)
+except:
+ log('Gedit-edit-existing-file failed','error')
+ raise LdtpExecutionError(0)
+selectmenuitem('*gedit','mnuFile;mnuSave')
+time.sleep(3)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+waittillguinotexist('*gedit')
+selectmenuitem('frm*Browser','mnuFile;mnuClose')
+waittillguinotexist('frm*Browser')
+
+log('Gedit-edit-existing-file','testend')
diff --git a/gedit/EditFunctions.xml b/gedit/EditFunctions.xml
new file mode 100644
index 0000000..38fa4d8
--- /dev/null
+++ b/gedit/EditFunctions.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<data>
+ <file0>file0</file0>
+ <append-text>Appended Text</append-text>
+</data>
diff --git a/gedit/GeditKill.py b/gedit/GeditKill.py
new file mode 100755
index 0000000..3015936
--- /dev/null
+++ b/gedit/GeditKill.py
@@ -0,0 +1,50 @@
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# N Srinivasan <raiden.202@gmail.com>
+#
+# Copyright 2004-2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
+from ldtp import *
+from ldtputils import *
+import os,subprocess
+try:
+ log('gedit-ungraceful-kill-test','teststart')
+ a = file('/dev/null','w')
+
+ subprocess.Popen("ulimit -c unlimited && gedit --disable-crash-dialog",
+ stderr=a,shell=True)
+ time.sleep(3)
+ subprocess.Popen("kill -11 `pgrep gedit`",shell=True)
+ time.sleep(5)
+ print "<DEBUG>"
+ if guiexist('*gedit') == 0:
+ if os.path.exists(os.path.abspath('') + '/core') == True:
+ log('Gedit dumped core','info')
+ else:
+ log('No core dump found ..','error')
+ raise LdtpExecutionError(0)
+ else:
+ log('Crash dialog appeared','error')
+ raise LdtpExecutionError(0)
+except:
+ log('gedit-ungraceful-kill-test failed','error')
+ raise LdtpExecutionError(0)
+log('gedit-ungraceful-kill-test','testend')
diff --git a/gedit/HelpPlugin.py b/gedit/HelpPlugin.py
new file mode 100755
index 0000000..ea08c15
--- /dev/null
+++ b/gedit/HelpPlugin.py
@@ -0,0 +1,78 @@
+#############################################################################
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
+#
+# Copyright 2004 - 2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+#############################################################################
+
+
+from ldtp import *
+from ldtputils import *
+from string import *
+def testHelpPlugin():
+ try:
+ log('Testing Help','info')
+ selectmenuitem('*gedit','mnuHelp;mnuContents')
+ time.sleep(15)
+ #check for the manual window
+ if guiexist('*geditManual*')==1:
+ log('Manual window appears','info')
+ else:
+ log('Manual does not appear','error')
+ raise LdtpExecutionError(0)
+ selectmenuitem('*gedit','mnuHelp;mnuAbout')
+ time.sleep(10)
+ #check for the About window
+ if guiexist('dlgAboutgedit')==1:
+ click('dlgAboutgedit','btnCredits')
+ time.sleep(5)
+ if guiexist('dlgCredits')==1:
+ log('Test Help About Success','info')
+ click('dlgCredits','btnClose')
+ else:
+ log('Credits Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ click('dlgAboutgedit','btnClose')
+ else:
+ log('About Gedit Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Test Help Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ log('Test Help Success','info')
+
+
+try:
+ log('Test Help Plugin','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ testHelpPlugin()
+except:
+ log('Test Help Plugin Failed','error')
+ raise LdtpExecutionError(0)
+if guiexist('*gedit'):
+ selectmenuitem('*gedit','mnuFile;mnuQuit')
+ time.sleep(5)
+ if guiexist('dlgQuestion')==1:
+ click('dlgQuestion','btnClosewithoutSaving')
+log('Test Help lugin','testend')
diff --git a/gedit/InvalidURL.py b/gedit/InvalidURL.py
new file mode 100755
index 0000000..7c558a3
--- /dev/null
+++ b/gedit/InvalidURL.py
@@ -0,0 +1,73 @@
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# N Srinivasan <raiden.202@gmail.com>
+#
+# Copyright 2004-2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
+from ldtp import *
+from ldtputils import *
+from os import system
+try:
+ log('Invalid-url-and-kill-test','teststart')
+ launchapp('gedit',1)
+ time.sleep(2)
+ obj = LdtpDataFileParser(datafilename)
+ url = obj.gettagvalue('invurl')[0]
+ if guiexist('*gedit') == 1:
+ print len(getobjectlist('*gedit'))
+ selectmenuitem('*gedit','mnuFile;mnuOpenLocation')
+ time.sleep(2)
+ if guiexist('dlgOpenLocation') == 1:
+ settextvalue('dlgOpenLocation','txt0',url)
+ click('dlgOpenLocation','btnOpen')
+ waittillguinotexist('dlgOpenLocation')
+ time.sleep(25)
+ #To check, we use the fact that print button is disabled if document is not opened.
+ #If not it is enabled
+
+# remap('gedit','*gedit')
+# a = getobjectlist('*gedit')
+# print len(a)
+# if a.index('lblCouldnotopenthefilehttp') >= 0:
+# log('Invalid URL not opened','info')
+ if stateenabled('*gedit','btnPrint') == 0:
+ log('Invalid URL not opened','info')
+ else:
+ log('Open URL dialog not appearing','error')
+ raise LdtpExecutionError(0)
+ log('Killing gedit','info')
+ system('pkill gedit')
+ time.sleep(10)
+# reinitldtp()
+ if guiexist('*gedit*') == 1: #Denotes hang.. crash NOT checked
+ #Seems gedit's crash dialog is not accessibility enabled,
+ #so can't check..
+ log('Gedit hung on kill','error')
+ raise LdtpExecutionError(0)
+ else:
+ log('Gedit silently killed','info')
+ else:
+ log('Unable to open gedit','error')
+ raise LdtpExecutionError(0)
+except:
+ log('Invalid-url-and-kill-test failed','error')
+ raise LdtpExecutionError(0)
+log('Invalid-url-and-kill-test','testend')
diff --git a/gedit/InvalidURL.xml b/gedit/InvalidURL.xml
new file mode 100755
index 0000000..7a72490
--- /dev/null
+++ b/gedit/InvalidURL.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0"?>
+<data>
+ <invurl>http://www.ldtp.com</invurl>
+</data>
diff --git a/gedit/LaunchGedit.py b/gedit/LaunchGedit.py
new file mode 100755
index 0000000..06fb9cc
--- /dev/null
+++ b/gedit/LaunchGedit.py
@@ -0,0 +1,48 @@
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# N Srinivasan <raiden.202@gmail.com>
+#
+# Copyright 2004-2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
+#
+from ldtp import *
+try:
+ log('Gedit-Launch','teststart')
+ selectmenuitem('frmTop*Panel','mnuApplications;mnuAccessories;mnuTextEditor')
+ time.sleep(5)
+ if guiexist('*gedit') == 1:
+ log('Gedit started successfully','info')
+ else:
+ log('Gedit cannot be launched','error')
+ raise LdtpExecutionError(0)
+ time.sleep(3)
+ log('Closing gedit..','info')
+ selectmenuitem('*gedit','mnuFile;mnuQuit')
+ time.sleep(3)
+ if guiexist('*gedit') == 0:
+ log('Successfully exited gedit','info')
+ else:
+ log('Cannot exit gedit','error')
+ raise LdtpExecutionError(0)
+except:
+ log('Cannot','error')
+ log('Gedit-Launch','testend')
+ raise LdtpExecutionError(0)
diff --git a/gedit/Plugins.py b/gedit/Plugins.py
new file mode 100755
index 0000000..7e76e1b
--- /dev/null
+++ b/gedit/Plugins.py
@@ -0,0 +1,307 @@
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# N Srinivasan <raiden.202@gmail.com>
+#
+# Copyright 2004-2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
+from ldtp import *
+from ldtputils import *
+import time
+
+def clear_text():
+ selectmenuitem('*gedit','mnuEdit;mnuSelectAll')
+ time.sleep(1)
+ selectmenuitem('*gedit','mnuEdit;mnuDelete')
+ time.sleep(3)
+def check(chars,words,lines):
+ i = j = 0
+# time.sleep(5)
+# print "<DEBUG>"
+ if guiexist('dlg*Statistics') == 1:
+# print "<DEBUG>"
+# time.sleep(2)
+# remap('dlg*Statistics')
+ a = getobjectlist('*Statistics')
+ else:
+ return 0
+ print "<DEBUG>"
+ bytes = chars #Since we type only plain text
+ if a.count('lbl' + str(lines)) > 0 and a.count('lbl' +
+ str(words)) > 0 and a.count('lbl' +
+ str(chars)) > 0 and a.count('lbl' +
+ str(chars - 1) + '1') and a.count('lbl' +
+ str(bytes) + '2') > 0:
+ return 1
+ else:
+ return 0
+
+def select_plugin(name,flag):
+ selectmenuitem('*gedit','mnuEdit;mnuPreferences')
+ waittillguiexist('dlggedit*')
+ selecttab('dlggedit*','ptl0','Plugins')
+ ind = gettablerowindex('dlggedit*','tbl1',name)
+ selectrowindex('dlggeditPreferences','tbl1',ind)
+ checkrow('dlggeditPreferences','tbl1',ind)
+ if flag == 1:
+ click('dlggeditPreferences','btnClose')
+ waittillguinotexist('dlggeditPreferences')
+ return
+ else:
+ return
+
+def test_stats():
+ log('Testing document statistics plugin..','info')
+ select_plugin('Document Statistics',1)
+ settextvalue('*gedit','txt0','LDTP')
+ if selectmenuitem('*gedit','mnuTools;mnu*Statistics') == 1:
+ time.sleep(3)
+ if guiexist('dlg*Statistics') == 1:
+ log('Checking overall doc stats..','info')
+ if check(len('LDTP'),1,1) == 0:
+ log('Updating text..','info')
+ appendtext('*gedit','txt0',' Testing')
+ click('dlg*Statistics','btnUpdate')
+ if check(len('LDTP Testing'),2,1) == 0:
+ log('Document statistics displayed correctly','info')
+ click('dlg*Statistics','btnClose')
+ return 0
+ else:
+ log('Document statistics not updated','error')
+ log('Document statistics plugin test failed','error')
+ return 1
+ else:
+ log('Document statistics incorrect/not displayed','error')
+ log('Document statistics plugin test failed','error')
+ return 1
+ return 0
+ else:
+ log('Statistics dialog does not appear','error')
+ log('Document statistics plugin test failed','error')
+ return 1
+ else:
+ log('Cannot find menu item','error')
+ log('Document statistics plugin test failed','error')
+ return 1
+
+def test_username(user):
+ log('Testing insert user name plugin','info')
+ select_plugin('User name',1)
+ if selectmenuitem('*gedit','mnuEdit;mnuInsertUserName') == 1:
+ time.sleep(2)
+ if gettextvalue('*gedit','txt0') == user + ' ':
+ log('User name inserted','info')
+ return 0
+ else:
+ log('User name not entered','error')
+ log('Insert User name test failed','error')
+ return 1
+
+def test_date():
+ log('Testing Insert Date/Time plugin','info')
+ select_plugin('Insert Date/Time',0)
+ selectrow('dlggeditPreferences','tbl1','Insert Date/Time')
+ click('dlggeditPreferences','btnConfigurePlugin')
+ waittillguiexist('dlgConfigure*')
+ click('dlgConfigure*','rbtnUsetheselectedformat')
+ date = time.strftime('%m/%d/%Y',time.localtime())
+ selectrow('dlgConfigure*','tbl0',date)
+ click('dlgConfigure*','btnOK')
+ waittillguinotexist('dlgConfigure*')
+ click('dlggeditPreferences','btnClose')
+ waittillguinotexist('dlggeditPreferences')
+ if selectmenuitem('*gedit','mnuEdit;mnuInsertDateandTime') == 1:
+ time.sleep(2)
+ if gettextvalue('*gedit','txt0') == date + ' ' :
+ log('Date inserted correctly','info')
+ log('Checking with custom formatted date/time','info')
+ clear_text()
+ select_plugin('Insert Date/Time',0)
+ selectrow('dlggeditPreferences','tbl1','Insert Date/Time')
+ click('dlggeditPreferences','btnConfigurePlugin')
+ waittillguiexist('dlgConfigure*')
+ click('dlgConfigure*','rbtnPromptforaformat')
+ click('dlgConfigure*','btnOK')
+ waittillguinotexist('dlgConfigure*')
+ click('dlggeditPreferences','btnClose')
+ waittillguinotexist('dlggeditPreferences')
+ selectmenuitem('*gedit','mnuEdit;mnuInsertDateandTime')
+ time.sleep(3)
+ if guiexist('dlgInsert*') == 1:
+ log('Gedit prompts for date format','info')
+ log('Inserting a custom formatted date..','info')
+ click('dlgInsert*','rbtnUsecustom*')
+
+ settextvalue('dlgInsert*','txt0','%d-%m-%Y %H:%M')
+ click('dlgInsert*','btnInsert')
+ waittillguinotexist('dlgInsert*')
+ now = time.strftime('%d-%m-%Y %H:%M',time.localtime())
+ if gettextvalue('*gedit','txt0') == now + ' ':
+ log('Custom formatted time inserted correctly','info')
+ else:
+ log('Custom format time not inserted','error')
+ log('Insert date/time plugin test failed','error')
+ return 1
+ else:
+ log('Insert Date/time dialog not does not appear','error')
+ log('Insert date/time plugin test failed','error')
+ return 1
+ else:
+ log('Date not inserted','error')
+ log('Insert date/time plugin test failed','error')
+ return 1
+
+def test_indent():
+ log('Testing indent lines plugin..','info')
+ select_plugin('Indent lines',1)
+ settextvalue('*gedit','txt0','LDTP Linux Desktop Testing Project')
+ selectmenuitem('*gedit','mnuEdit;mnuSelectAll')
+ if selectmenuitem('*gedit','mnuEdit;mnuIndent') == 1:
+ time.sleep(2)
+ print "HHHHH" + gettextvalue('*gedit','txt0',0,1)
+ if gettextvalue('*gedit','txt0',0,1) == '\t':
+ log('Indentation success','info')
+ if selectmenuitem('*gedit','mnuEdit;mnuUnindent') == 1:
+ if gettextvalue('*gedit','txt0',0,1) != '\t':
+ log('Unindent success','info')
+ return 0
+ else:
+ log('Unindent failed','error')
+ log('Indent lines plugin test failed','error')
+ return 1
+ else:
+ log('Indentation did not succeed','error')
+ log('Indent lines plugin test failed','error')
+ return 1
+
+def test_taglines():
+ log('Testing tag lines plugin..','info')
+ select_plugin('Tag list',1)
+ selectmenuitem('*gedit','mnuView;mnuSidePane')
+ selecttab('*gedit','ptl0','Tags')
+# comboselect('*gedit','cboAvailableTagLists','HTML-Tags')
+ log('Selecting the <HTML> tag','info')
+ selectrow('*gedit','tblAvailable*','HTML root element')
+ doubleclickrow('*gedit','tblAvailable*','HTML root element')
+ time.sleep(2)
+ if gettextvalue('*gedit','txt0') == '<HTML> </HTML>':
+ log('Selected tag inserted correctly','info')
+ return 0
+ else:
+ log('Tag not inserted','error')
+ log('Tag lines plugin test failed','error')
+ return 1
+def foo(mnu,str):
+ selectmenuitem('*gedit','mnuEdit;mnuSelectAll')
+ selectmenuitem('*gedit','mnuEdit;mnuChangeCase;' + mnu)
+ time.sleep(2)
+ if gettextvalue('*gedit','txt0') == str:
+ selectmenuitem('*gedit','mnuEdit;mnuUndo')
+ return 0
+ else:
+ return 1
+
+def test_change_case():
+ inp = 'LDTP Testing'
+ log('Testing change case..','info')
+ settextvalue('*gedit','txt0',inp)
+ select_plugin('Change Case',1)
+ up = 'mnuAllUppercase'
+ lp = 'mnuAllLowercase'
+ if doesmenuitemexist('*gedit',
+ 'mnuEdit;mnuChangeCase;' + up) == 1 and doesmenuitemexist('*gedit',
+ 'mnuEdit;mnuChangeCase;' + lp) == 1 and doesmenuitemexist('*gedit',
+ 'mnuEdit;mnuChangeCase;mnuInvertCase') == 1 and doesmenuitemexist('*gedit',
+ 'mnuEdit;mnuChangeCase;mnuTitleCase') == 1:
+ log('Change case menu item exists with all options','info')
+ if foo('mnuAllUppercase',inp.upper()) == 0:
+ log('All Upper case OK','info')
+ else:
+ log('Menu All upper case not working','error')
+ log('Change case test failed','error')
+ return 1
+ if foo('mnuAllLowercase',inp.lower()) == 0:
+ log('All lower case OK','info')
+ else:
+ log('Menu All lower case not working','error')
+ log('Change case test failed','error')
+ return 1
+ if foo('mnuInvertCase',inp.swapcase()) == 0:
+ log('Invert Case OK','info')
+ else:
+ log('Menu invert case not working','error')
+ log('Change case test failed','error')
+ return 1
+ if foo('mnuTitleCase',inp.title()) == 0:
+ log('Title case OK','info')
+ return 0
+ else:
+ log('Menu item title case not working','error')
+ log('Change case test failed','error')
+ return 1
+ else:
+ log('Menu item does not exist','error')
+ return 1
+
+try:
+ log('Plugins-test','teststart')
+ obj = LdtpDataFileParser(datafilename)
+ user = obj.gettagvalue('usrname')[0]
+# user = 'Srinivasan N'
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+
+ if test_stats() == 1:
+ raise LdtpExecutionError(0)
+ time.sleep(2)
+ clear_text()
+
+ if test_username(user) == 1:
+ raise LdtpExecutionError(0)
+ time.sleep(2)
+ clear_text()
+
+ if test_date() == 1:
+ raise LdtpExecutionError(0)
+ time.sleep(2)
+ clear_text()
+
+ if test_indent() == 1:
+ raise LdtpExecutionError(0)
+ time.sleep(2)
+ clear_text()
+
+ if test_taglines() == 1:
+ raise LdtpExecutionError(0)
+ time.sleep(2)
+ clear_text()
+
+ if test_change_case() == 1:
+ raise LdtpExecutionError(0)
+
+ selectmenuitem('*gedit','mnuFile;mnuQuit')
+ waittillguiexist('dlgQuestion')
+ click('dlgQuestion','btnClosewithout*')
+ waittillguinotexist('*gedit')
+
+except:
+ log('Plugins-test failed','error')
+ raise LdtpExecutionError(0)
+log('Plugins-test','testend')
diff --git a/gedit/Plugins.xml b/gedit/Plugins.xml
new file mode 100755
index 0000000..4c5e287
--- /dev/null
+++ b/gedit/Plugins.xml
@@ -0,0 +1,5 @@
+<?xml version = "1.0"?>
+<data>
+<usrname>admin</usrname>
+</data>
+
diff --git a/gedit/PrinttoFile.py b/gedit/PrinttoFile.py
new file mode 100755
index 0000000..8e62216
--- /dev/null
+++ b/gedit/PrinttoFile.py
@@ -0,0 +1,62 @@
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# N Srinivasan <raiden.202@gmail.com>
+#
+# Copyright 2004-2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+from ldtp import *
+from ldtputils import *
+import os
+def print_to_file(type):
+ selectmenuitem('*gedit','mnuFile;mnuPrint')
+ waittillguiexist('dlgPrint')
+ time.sleep(3)
+ if type == 'ps':
+ selectrow('dlgPrint','tbl0','Generic Postscript')
+ comboselect('dlgPrint','cboLocation','File')
+ else:
+ selectrow('dlgPrint','tbl0','Create a PDF document')
+ click('dlgPrint','btnPrint')
+ waittillguinotexist('dlgPrint')
+ time.sleep(3)
+def exists_check(name):
+ if os.path.exists(os.environ['HOME'] + '/' + name) == True:
+ log(name + ' file created..','info')
+ return 0
+ else:
+ log(name + ' file not created','error')
+ return 1
+try:
+ log('Test','teststart')
+ app = 'gedit ' + os.environ['HOME'] + '/new.txt'
+ print app
+ launchapp(app,1)
+ waittillguiexist('*gedit')
+ settextvalue('*gedit','txt0','LDTP Testing')
+ print_to_file('ps')
+ if exists_check('output.ps') == 1:
+ raise LdtpExecutionError(0)
+ print_to_file('pdf')
+ if exists_check('output.pdf') == 1:
+ raise LdtpExecutionError(0)
+except:
+ log('Test failed','error')
+ raise LdtpExecutionError(0)
+log('Test','testend')
diff --git a/gedit/README b/gedit/README
deleted file mode 100644
index a7cf9ec..0000000
--- a/gedit/README
+++ /dev/null
@@ -1,39 +0,0 @@
-Welcome! We have provided sample Gedit test scripts for you to take a look at what LDTP can do for you.
-
-Version Summary:
-
-LDTP 0.2.1 (With Localiaztion support)
-Gedit 2.12.0
-
-How to use this:
-
-* Install LDTP
-
-* This example includes the following test cases
- i. Open a new file, add some text and save it.
- ii. Open saveas dialog and click cancel
- iii. Open Fileopen dialog and click cancel
-
-* Open gedit. Make sure its opened in the default state with the title as "Unsaved Document 1 - gedit". If any other document is open please close them all and click File->New once to bring it to the required state.
-
-* Execute the following command from the directory where you have these samples. By default it will be in <LDTP-HOME>/EXAMPLES/gedit
- $ gldap.py gedit-execution.xml
-
-* After the tests are over you should be able to see gedit.log file which has the log output for the tests undertaken in xml format.
-
-Hints for using with locales other than English:
-
-* Make sure LANG varaiable is set appropriately.
-
-* Edit gedit.py file with proper path for mo files required.
-
-* Make sure LANG variable is set in the terminal where you start the testing by invoking gldap.py or use as given below
- $ LANG=<appropriate-value> gldap.py gedit-execution.xml
-
-References:
-
-If you have any queries please use the following references to let us know
-
-+ http://www.gnomebangalore.org/ldtp
-+ Our mailing list -> ldtp-dev@lists.freedesktop.org
-+ Join us in IRC #ldtp at irc.gimp.org \ No newline at end of file
diff --git a/gedit/SaveAll.py b/gedit/SaveAll.py
new file mode 100755
index 0000000..f0d1b99
--- /dev/null
+++ b/gedit/SaveAll.py
@@ -0,0 +1,131 @@
+#############################################################################
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
+#
+# Copyright 2004 - 2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+#############################################################################
+
+
+from ldtp import *
+from ldtputils import *
+from string import *
+def testSaveAll(str,paths):
+ try:
+ log('Testing Save All Option','info')
+ #delay
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuDocuments;mnuCloseAll')
+ #open the files
+ for path in paths:
+ selectmenuitem('*gedit','mnuFile;mnuOpenLocation')
+ waittillguiexist('dlgOpenLocation')
+ if guiexist('dlgOpenLocation')==1:
+ settextvalue('dlgOpenLocation','txt0',path)
+ click('dlgOpenLocation','btnOpen')
+ else:
+ log('OpenLocation Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ time.sleep(5)
+ #i=0
+ #get the file contents before appending text
+ contents_before=range(2)
+ i=0
+ for path in paths:
+ fp=open(path,'r')
+ contents_before[i]=fp.read()
+ i=i+1
+ fp.close()
+ i=0
+ for path in paths:
+ time.sleep(3)
+ selecttab('*gedit','ptl1',path)
+ time.sleep(2)
+ remap('evolution','*gedit')
+ textbox='txt'+ repr(i)
+ appendtext('*gedit',textbox,str);
+ i=i+1
+ #test close all
+ selectmenuitem('*gedit','mnuDocuments;mnuSaveAll')
+ time.sleep(4)
+ #add up the new appended text to the contents_before
+ contents_before[0]=contents_before[0]+str+"\n"
+ contents_before[1]=contents_before[1]+str+"\n"
+ #check the new contents_before with the contents of each file in a loop
+ i=0
+ for path in paths:
+ fp=open(path,'r')
+ new_contents=fp.read()
+ if (new_contents==contents_before[i]):
+ pass
+ else:
+ log('Test Save All option Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ i=i+1
+ fp.close()
+ except:
+ log('Test Save All Option Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ log('Test Save All Option Success','info')
+
+
+try:
+ log('Test Save All Option','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ #get the data from the data xml
+ obj = LdtpDataFileParser(datafilename)
+ fpath1= obj.gettagvalue('file0')[0] # file 1
+ fpath2=obj.gettagvalue('file1')[0] #file 2
+ str=obj.gettagvalue('text')[0]
+ sorttext=obj.gettagvalue('sorttext')[0]
+ strlist=split(sorttext)
+ #Create the files if they dont exist
+ if os.path.exists(os.getcwd() + '/' + fpath1) == 0:
+ fp=open(fpath1,'w')
+ i=0
+ length=len(strlist)
+ while i<length:
+ fp.write(strlist[i]+'\n')
+ i=i+1
+ fp.close()
+ if os.path.exists(os.getcwd() + '/' + fpath2) == 0:
+ fp=open(fpath2,'w')
+ i=0
+ length=len(strlist)
+ while i<length:
+ fp.write(strlist[i]+'\n')
+ i=i+1
+ fp.close()
+ paths=[fpath1,fpath2]
+ testSaveAll(str,paths)
+except:
+ log('Test Save All Option','error')
+ raise LdtpExecutionError(0)
+time.sleep(5)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+time.sleep(5)
+if guiexist('dlgQuestion')==1:
+ click('dlgQuestion','btnClosewithoutSaving')
+time.sleep(5)
+log('Test Save All Option','testend')
diff --git a/gedit/SaveAll.xml b/gedit/SaveAll.xml
new file mode 100755
index 0000000..485d154
--- /dev/null
+++ b/gedit/SaveAll.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<data>
+ <file0>t1</file0>
+ <file1>t2</file1>
+ <text>sample text</text>
+ <sorttext>qqwedas bweqw xqwe eaweqasdasdw eqweqw sampltext</sorttext>
+</data>
diff --git a/gedit/SearchFunctions.py b/gedit/SearchFunctions.py
new file mode 100755
index 0000000..4bea39d
--- /dev/null
+++ b/gedit/SearchFunctions.py
@@ -0,0 +1,173 @@
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# N Srinivasan <raiden.202@gmail.com>
+#
+# Copyright 2004-2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
+from ldtp import *
+from ldtputils import *
+yellow = '65535,65535,30840'
+def srh(srhfor):
+ try:
+ log('Testing Search','info')
+
+ #highlight color used by gedit
+ c = getcharcount('*gedit','txt0')
+
+ i = 0
+ l= len(srhfor)
+ print srhfor
+ while i < c - l :
+ if gettextvalue('*gedit','txt0',i,i+l) == srhfor:
+ break
+ i = i + 1
+ selectmenuitem('*gedit','mnuSearch;mnuFind')
+ time.sleep(3)
+ if guiexist('dlgFind') == 1:
+ uncheck('dlgFind','chkMatchcase')
+ uncheck('dlgFind','chkMatchentire*')
+ uncheck('dlgFind','chkSearchback*')
+
+ settextvalue('dlgFind','txt1',srhfor)
+ click('dlgFind','btnFind')
+ time.sleep(2)
+ click('dlgFind','btnClose')
+ time.sleep(2)
+ if gettextproperty('*gedit','txt0',i,i+l) == "bg-color:" + yellow:
+ log('Search term ' + srhfor + ' highlighted','info')
+ else:
+ log('Search term not highlighted','error')
+ raise LdtpExecutionError(0)
+ else:
+ log('Find dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Search failed','error')
+ raise LdtpExecutionError(0)
+ return
+ log('Search test success','info')
+
+def srh_dialog_options(srhfor):
+ try:
+ log('Testing search with options ..')
+ selectmenuitem('*gedit','mnuSearch;mnuClearHighlight')
+ time.sleep(2)
+ selectmenuitem('*gedit','mnuSearch;mnuFind')
+ time.sleep(3)
+ i = l = flag = 0
+ if guiexist('dlgFind') == 1:
+ check('dlgFind','chkMatchcase')
+ settextvalue('dlgFind','txt1',srhfor.upper())
+ time.sleep(2)
+ click('dlgFind','btnFind')
+ remap('*gedit','dlgFind')
+ a=getstatusbartext('*gedit','stat*')
+ if a == "Phrase not found":
+ log('Search term not highlighted','info')
+ log('Match case option works','info')
+ else:
+ log('Match case option not working','info')
+ raise LdtpExecutionError(0)
+
+ uncheck('dlgFind','chkMatchcase')
+ check('dlgFind','chkMatchentire*')
+ settextvalue('dlgFind','txt1',srhfor)
+ click('dlgFind','btnFind')
+ time.sleep(2)
+ str = gettextvalue('*gedit','txt0')
+ a = str.split()
+ while i < len(a):
+ if a[i] == srhfor:
+ if gettextproperty('*gedit','txt0',l+1,
+ l+len(srhfor)) == "bg-color:" + yellow:
+ flag = 1
+ else:
+ flag = 0
+ break
+ l = l + len(a[i])
+ i = i + 1
+ if flag == 1:
+ log('Only whole words have been highlighted','info')
+ else:
+ log('Match whole words does not work','error')
+ raise LdtpExecutionError(0)
+ uncheck('dlgFind','chkMatchentire*')
+ click('dlgFind','btnClose')
+ waittillguinotexist('dlgFind')
+ else:
+ log('Find dialog does not appear','error')
+ raise LdtpExecutionError(0)
+
+ except:
+ log('Testing of search options failed','error')
+ raise LdtpExecutionError(0)
+ return
+
+def srh_repl(srhfor,replwith):
+ try:
+ log('Testing Search-Replace','info')
+ selectmenuitem('*gedit','mnuSearch;mnuReplace')
+ time.sleep(3)
+ if guiexist('dlgReplace') == 1:
+ settextvalue('dlgReplace','txt1',srhfor)
+ settextvalue('dlgReplace','txt0',replwith)
+ click('dlgReplace','btnFind')
+ time.sleep(2)
+ click('dlgReplace','btnReplaceAll')
+ time.sleep(2)
+ #after replacing, we attempt to find the old text again;
+ #we expect a "Phrase not found" in the status bar
+ click('dlg*','btnFind')
+ a=getstatusbartext('*gedit','stat*')
+ click('dlg*','btnClose')
+ if a == "Phrase not found":
+ log('Search and Replace success','info')
+ elif a == None:
+ log('Replace failed','error')
+ raise LdtpExecutionError(0)
+ else:
+ log('Replace dialog does not appear','error')
+ raise LdtpExectutionError(0)
+ except:
+ log('Search-Replace failed','error')
+ raise LdtpExecutionError(0)
+ return
+
+
+try:
+ log('Search-dialog-test','teststart')
+ obj = LdtpDataFileParser(datafilename)
+ text = obj.gettagvalue('text')[0]
+ srhfor = obj.gettagvalue('srhfor')[0]
+ replwith = obj.gettagvalue('replwith')[0]
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ settextvalue('*gedit','txt0',text)
+ srh(srhfor)
+ srh_dialog_options(srhfor)
+ srh_repl(srhfor,replwith)
+except:
+ log('Search-dialog-test failed','error')
+ raise LdtpExecutionError(0)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+waittillguiexist('dlgQuestion')
+click('dlgQuestion','btnClosewithoutSaving')
+log('Search-dialog-test','testend')
diff --git a/gedit/SearchFunctions.xml b/gedit/SearchFunctions.xml
new file mode 100755
index 0000000..808e162
--- /dev/null
+++ b/gedit/SearchFunctions.xml
@@ -0,0 +1,6 @@
+<?xml version = "1.0"?>
+<data>
+ <text>I aim to get 100.I claim that I'm the best</text>
+ <srhfor>aim</srhfor>
+ <replwith>try</replwith>
+</data>
diff --git a/gedit/SortPlugin_CaseSensitive.py b/gedit/SortPlugin_CaseSensitive.py
new file mode 100755
index 0000000..10e6772
--- /dev/null
+++ b/gedit/SortPlugin_CaseSensitive.py
@@ -0,0 +1,138 @@
+#############################################################################
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
+#
+# Copyright 2004 - 2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+#############################################################################
+
+
+from string import *
+from ldtp import *
+from ldtputils import *
+def testSortPluginwithcase(filename): #case sensitive
+ try:
+ log('Testing Sort Plugin with case sensitive','info')
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuEdit;mnuPreferences')
+ waittillguiexist('dlggeditPreferences')
+ if guiexist('dlggeditPreferences') == 1:
+ selecttab('dlggeditPreferences','ptl0','Plugins')
+ index=gettablerowindex ('dlggeditPreferences','tbl1','Sort')
+ checkrow('dlggeditPreferences','tbl1',index,0)
+ click('dlggeditPreferences','btnClose')
+ #open a file
+ selectmenuitem('*gedit','mnuFile;mnuOpenLocation')
+ waittillguiexist('dlgOpenLocation')
+ if guiexist('dlgOpenLocation')==1:
+ settextvalue('dlgOpenLocation','cboEnterthelocation(URI)ofthefileyouwouldliketoopen',filename)
+ click('dlgOpenLocation','btnOpen')
+ else:
+ log('Open Location dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ #select Sort with case sensitive option
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuEdit;mnuSort')
+ waittillguiexist('dlgSort')
+ if guiexist('dlgSort') == 1:
+ if verifycheck('dlgSort','chkIgnorecase') == 1:
+ click('dlgSort','chkIgnorecase')
+ click('dlgSort','btnSort')
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuFile;mnuSave')
+ time.sleep(5)
+ #test case sensitive Sort
+ fp=open(filename)
+ a=fp.readline()
+ b=fp.readline()
+ #compare lines in pair ..eg line 1 with 2 then 2 with
+ #3 etc
+ #here considering only alphabets so skipping over the other characters
+ while a!='':
+ i=0
+ j=0
+ while ((i<len(a)) and(a[i] not in lowercase) and (a[i] not in uppercase)):
+ i=i+1
+ while ((j<len(b)) and (b[j] not in lowercase) and (b[j] not in uppercase)):
+ j=j+1
+
+ if((a[i:]>b[j:]) or (lower(a[i:])<=lower(b[j:]))):
+ a=fp.readline()
+ b=fp.readline()
+ else:
+ log('Test Sort plugin with Case sensitive Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ else:
+ log('Sort Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ #select Sort with case insensitive option
+ time.sleep(2)
+ selectmenuitem('*gedit','mnuEdit;mnuSort')
+ waittillguiexist('dlgSort')
+ if guiexist('dlgSort') == 1:
+ if verifyuncheck('dlgSort','chkIgnorecase') == 1:
+ click('dlgSort','chkIgnorecase')
+ click('dlgSort','btnSort')
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuFile;mnuSave')
+ time.sleep(5)
+
+ else:
+ log('Sort Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ else:
+ log('Preferences dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Test Sort Plugin with case sensitive Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ log('Test Sort Plugin with case sensitive Success','info')
+
+
+try:
+ log('Test Sort Plugin with case sensitive','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ #get the data from the data xml
+ obj = LdtpDataFileParser(datafilename)
+ filename = obj.gettagvalue('file0')[0]
+ sorttext=obj.gettagvalue('sorttext')[0]
+ strlist=rsplit(sorttext,':')
+ #Create the files if they dont exist
+ if os.path.exists(os.getcwd() + '/' + filename) == False:
+ a=open(filename,'w')
+ i=0
+ length=len(strlist)
+ while i<length:
+ a.write(strlist[i]+'\n')
+ i=i+1
+ a.close()
+ testSortPluginwithcase(filename)
+except:
+ log('Test Sort Plugin with case sensitive failed','error')
+ raise LdtpExecutionError(0)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+time.sleep(5)
+if guiexist('dlgQuestion'):
+ click('dlgQuestion','btnClosewithoutSaving')
+log('Test Sort Plugin with case sensitive','testend')
diff --git a/gedit/SortPlugin_CaseSensitive.xml b/gedit/SortPlugin_CaseSensitive.xml
new file mode 100755
index 0000000..5cd980a
--- /dev/null
+++ b/gedit/SortPlugin_CaseSensitive.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<data>
+ <file0>t1</file0>
+ <file1>t2</file1>
+ <text>sample text</text>
+ <sorttext>qqwedas:bweqw:xqwe:eaweqasdasdw:eqweqw:sampltext</sorttext>
+</data>
diff --git a/gedit/SortPlugin_RemoveDuplicates.py b/gedit/SortPlugin_RemoveDuplicates.py
new file mode 100755
index 0000000..a41bc77
--- /dev/null
+++ b/gedit/SortPlugin_RemoveDuplicates.py
@@ -0,0 +1,164 @@
+#############################################################################
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
+#
+# Copyright 2004 - 2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+#############################################################################
+
+
+from string import *
+from ldtp import *
+from ldtputils import *
+def testRemoveDuplicates(filename): #case insensitive
+ try:
+ log('Testing Sort Plugin with Remove Duplicates','info')
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuEdit;mnuPreferences')
+ waittillguiexist('dlggeditPreferences')
+ if guiexist('dlggeditPreferences') == 1:
+ selecttab('dlggeditPreferences','ptl0','Plugins')
+ index=gettablerowindex ('dlggeditPreferences','tbl1','Sort')
+ checkrow('dlggeditPreferences','tbl1',index,0)
+ click('dlggeditPreferences','btnClose')
+ #open a file
+ selectmenuitem('*gedit','mnuFile;mnuOpenLocation')
+ waittillguiexist('dlgOpenLocation')
+ if guiexist('dlgOpenLocation')==1:
+ settextvalue('dlgOpenLocation','cboEnterthelocation(URI)ofthefileyouwouldliketoopen',filename)
+ click('dlgOpenLocation','btnOpen')
+ else:
+ log('Open Location dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ #select sort
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuEdit;mnuSort')
+ time.sleep(5)
+ waittillguiexist('dlgSort')
+ if guiexist('dlgSort')==1:
+ click('dlgSort','btnSort')
+ time.sleep(6)
+ selectmenuitem('*gedit','mnuFile;mnuSave')
+ time.sleep(6)
+ #test Sort
+ fp=open(filename)
+ a=fp.readline()
+ b=fp.readline()
+ #compare lines in pair ..eg line 1 with 2 then 2 with 3 etc
+ #here considering only alphabets so skipping over the other characters
+ while (b!=''):
+ i=0
+ j=0
+ while ((i<len(a)) and(a[i] not in lowercase) and (a[i] not in uppercase)):
+ i=i+1
+ while ((j<len(b)) and (b[j] not in lowercase) and (b[j] not in uppercase)):
+ j=j+1
+ if((lower(a[i:])<=lower(b[j:]))):
+ a=b
+ b=fp.readline()
+ else:
+
+ log('Sort did not happen in the natural order','error')
+ raise LdtpExecutionError(0)
+ fp.close()
+ else:
+ log('Sort Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ #select Sort with Remove Duplicates insensitive option
+ time.sleep(2)
+ selectmenuitem('*gedit','mnuEdit;mnuSort')
+ waittillguiexist('dlgSort')
+ if guiexist('dlgSort')==1:
+ if verifyuncheck('dlgSort','chkRemoveduplicates')==1:
+ click('dlgSort','chkRemoveduplicates')
+ click('dlgSort','btnSort')
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuFile;mnuSave')
+ time.sleep(5)
+ #test remove Duplicates
+ fp1=open(filename)
+ a=fp1.readline()
+ #test the number of occurances of each line..if greater than
+ #one then there are duplicates
+ while a!='':
+ fp2=open(filename)
+ b=fp2.readline()
+ count=0
+ while b!='':
+ if a==b:
+ if(count==0):
+ count=count+1
+ else:
+ log('Remove Duplicates Failed','error')
+ raise LdtpExecutionError(0)
+ else:
+ if (a!=b):
+ pass
+ else:
+
+ log('Remove Duplicates Failed','error')
+ raise LdtpExecutionError(0)
+ b=fp2.readline()
+ a=fp1.readline()
+ fp2.close()
+ fp1.close()
+ else:
+ log('Sort Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ else:
+ log('Preferences dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Test Sort Plugin with Remove Duplicates Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ log('Test Sort Plugin with Remove Duplicates Success','info')
+
+
+
+
+
+try:
+ log('Test Sort Plugin with Remove Duplicates','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ #get the data from the data xml
+ obj = LdtpDataFileParser(datafilename)
+ fname = obj.gettagvalue('file0')[0]
+ sorttext=obj.gettagvalue('sorttext')[0]
+ strlist=rsplit(sorttext)
+ if os.path.exists(os.getcwd() + '/' + fname) == False:
+ a=open(fname,'w')
+ i=0
+ length=len(strlist)
+ while i<length:
+ a.write(strlist[i]+'\n')
+ i=i+1
+ a.close()
+ testRemoveDuplicates(fname)
+except:
+ log('Test Sort Plugin with Remove Duplicates Failed','error')
+ raise LdtpExecutionError(0)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+time.sleep(8)
+if guiexist('dlgQuestion')==1:
+ click('dlgQuestion','btnClosewithoutSaving')
+log('Test Sort Plugin with Remove Duplicates','testend')
diff --git a/gedit/SortPlugin_RemoveDuplicates.xml b/gedit/SortPlugin_RemoveDuplicates.xml
new file mode 100755
index 0000000..fcf337d
--- /dev/null
+++ b/gedit/SortPlugin_RemoveDuplicates.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<data>
+ <file0>t1</file0>
+ <sorttext>qqwedas bweqw xqwe eaweqa sdasdw eqweqw sample text</sorttext>
+</data>
diff --git a/gedit/SortPlugin_ReverseSort.py b/gedit/SortPlugin_ReverseSort.py
new file mode 100755
index 0000000..f42215a
--- /dev/null
+++ b/gedit/SortPlugin_ReverseSort.py
@@ -0,0 +1,157 @@
+#############################################################################
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
+#
+# Copyright 2004 - 2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+#############################################################################
+
+from ldtp import *
+from ldtputils import *
+from string import *
+def testSortPlugin(filename):
+ try:
+ log('Testing Sort Plugin','info')
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuEdit;mnuPreferences')
+ waittillguiexist('dlggeditPreferences')
+ if guiexist('dlggeditPreferences') == 1:
+ selecttab('dlggeditPreferences','ptl0','Plugins')
+ index=gettablerowindex ('dlggeditPreferences','tbl1','Sort')
+ checkrow('dlggeditPreferences','tbl1',index,0)
+ click('dlggeditPreferences','btnClose')
+ #open a file
+ selectmenuitem('*gedit','mnuFile;mnuOpenLocation')
+ waittillguiexist('dlgOpenLocation')
+ if guiexist('dlgOpenLocation')==1:
+ settextvalue('dlgOpenLocation','cboEnterthelocation(URI)ofthefileyouwouldliketoopen',filename)
+ click('dlgOpenLocation','btnOpen')
+ else:
+ log('Open Location dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ #select Sort option
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuEdit;mnuSort')
+ time.sleep(5)
+ waittillguiexist('dlgSort')
+ if guiexist('dlgSort')==1:
+ click('dlgSort','btnSort')
+ time.sleep(5)
+ selectmenuitem('*gedit','mnuFile;mnuSave')
+ time.sleep(5)
+ #test Sort
+ fp=open(filename)
+ a=fp.readline()
+ b=fp.readline()
+ #compare lines in pair ..eg line 1 with 2 then 2 with 3 etc
+ #here considering only alphabets so skipping over the other characters
+ while (b!=''):
+ i=0
+ j=0
+ while ((i<len(a)) and(a[i] not in lowercase) and (a[i] not in uppercase)):
+ i=i+1
+ while ((j<len(b)) and (b[j] not in lowercase) and (b[j] not in uppercase)):
+ j=j+1
+
+ if((lower(a[i:])<=lower(b[j:]))):
+ a=b
+ b=fp.readline()
+ else:
+
+ log('Sort did not happen in the natural order','error')
+ raise LdtpExecutionError(0)
+ fp.close()
+ else:
+ log('Sort Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ #select Reverse Sort
+ #first check reverse order
+ selectmenuitem('*gedit','mnuEdit;mnuSort')
+ time.sleep(3)
+ waittillguiexist('dlgSort')
+ if guiexist('dlgSort')==1:
+ check('dlgSort','chkReverseorder')
+ click('dlgSort','btnSort')
+ time.sleep(7)
+ selectmenuitem('*gedit','mnuFile;mnuSave')
+ time.sleep(7)
+ #test Sort
+ fp=open(filename)
+ a=fp.readline()
+ b=fp.readline()
+ #same logic as above
+ while (b!=''):
+ i=0
+ j=0
+ while ((i<len(a)) and(a[i] not in lowercase) and (a[i] not in uppercase)):
+ i=i+1
+ while ((j<len(b)) and (b[j] not in lowercase) and (b[j] not in uppercase)):
+ j=j+1
+
+ if(a=='\n' or b=='\n' or(lower(a[i:])==lower(b[j:])) or (lower(a[i:])>=lower(b[j:]))):
+ a=b
+ b=fp.readline()
+ else:
+
+ log('Sort did not happen in the natural order','error')
+ raise LdtpExecutionError(0)
+ fp.close()
+ time.sleep(4)
+ else:
+ log('Sort Dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ else:
+ log('Preferences dialog does not appear','error')
+ raise LdtpExecutionError(0)
+ except:
+ log('Test Sort Plugin Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ log('Test Sort Plugin Success','info')
+
+
+try:
+ log('Test Sort Plugin','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ #get the data from the data xml
+ obj = LdtpDataFileParser(datafilename)
+ filename = obj.gettagvalue('file0')[0]
+ sorttext=obj.gettagvalue('sorttext')[0]
+ strlist=rsplit(sorttext,':')
+ #Create the files if they dont exist
+ if os.path.exists(os.getcwd() + '/' + filename) == False:
+ a=open(filename,'w')
+ i=0
+ length=len(strlist)
+ while i<length:
+ a.write(strlist[i]+'\n')
+ i=i+1
+ a.close()
+ testSortPlugin(filename)
+except:
+ log('Test Sort Plugin Failed','error')
+ raise LdtpExecutionError(0)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+time.sleep(8)
+if guiexist('dlgQuestion')==1:
+ click('dlgQuestion','btnClosewithoutSaving')
+log('Test Sort Plugin','testend')
diff --git a/gedit/SortPlugin_ReverseSort.xml b/gedit/SortPlugin_ReverseSort.xml
new file mode 100755
index 0000000..5cd980a
--- /dev/null
+++ b/gedit/SortPlugin_ReverseSort.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0"?>
+<data>
+ <file0>t1</file0>
+ <file1>t2</file1>
+ <text>sample text</text>
+ <sorttext>qqwedas:bweqw:xqwe:eaweqasdasdw:eqweqw:sampltext</sorttext>
+</data>
diff --git a/gedit/SyntaxHighlight.py b/gedit/SyntaxHighlight.py
new file mode 100755
index 0000000..e484c7c
--- /dev/null
+++ b/gedit/SyntaxHighlight.py
@@ -0,0 +1,101 @@
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# N Srinivasan <raiden.202@gmail.com>
+#
+# Copyright 2004-2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+
+from ldtp import *
+from ldtputils import *
+def chk_lang(lang,keyw,notkeyw,type = 'Sources'):
+ if selectmenuitem('*gedit','mnuView;mnuHighlightMode;mnu'
+ + type + ';mnu' + lang) == 1:
+ settextvalue('*gedit','txt0',keyw)
+ a = gettextproperty('*gedit','txt0',0,len(keyw) - 1)
+ if a == None:
+ log('Keyword not highlighted','error')
+ return -1
+ else:
+ settextvalue('*gedit','txt0',notkeyw)
+ a = gettextproperty('*gedit','txt0',0,len(notkeyw) - 1)
+ if a == None:
+ return 0
+ else: #Non-keyword is also colored
+ return -1
+ else:
+ return 1
+try:
+ log('Syntax-highlighting','teststart')
+ launchapp('gedit',1)
+ lst = ([])
+ lang = {}
+ keyw = {}
+ nonkeyw = {}
+ langtype = {}
+ obj = LdtpDataFileParser(datafilename)
+ lang[0] = obj.gettagvalue('lang0')[0]
+ keyw[0] = obj.gettagvalue('keyw0')[0]
+ nonkeyw[0] = obj.gettagvalue('nonkeyw0')[0]
+ langtype[0] = obj.gettagvalue('langtype0')[0]
+
+ lang[1] = obj.gettagvalue('lang1')[0]
+ keyw[1] = obj.gettagvalue('keyw1')[0]
+ nonkeyw[1] = obj.gettagvalue('nonkeyw1')[0]
+ langtype[1] = obj.gettagvalue('langtype1')[0]
+
+ lang[2] = obj.gettagvalue('lang2')[0]
+ keyw[2] = obj.gettagvalue('keyw2')[0]
+ nonkeyw[2] = obj.gettagvalue('nonkeyw2')[0]
+ langtype[2] = obj.gettagvalue('langtype2')[0]
+
+ lst.append([lang[0],keyw[0],nonkeyw[0],langtype[0]])
+ lst.append([lang[1],keyw[1],nonkeyw[1],langtype[1]])
+ lst.append([lang[2],keyw[2],nonkeyw[2],langtype[2]])
+
+ i = 0
+ j = len(lst)
+ while i < j :
+ if len(lst[i]) < 4:
+ a = chk_lang(lst[i][0],lst[i][1],lst[i][2])
+ else:
+ a = chk_lang(lst[i][0],lst[i][1],lst[i][2],lst[i][3])
+ if a == -1:
+ flag = 1
+ log('Syntax highlighting failed','error')
+ raise LdtpExecutionError(0)
+ elif a == 0:
+ flag = 0
+ i = i + 1
+ continue
+ else:
+ log('The language does not exist in the menu','warning')
+ log('Skipping menu item, continuing with next language','warning')
+ continue
+ if flag == 0:
+ log('Syntax highlighting OK','info')
+ i = i + 1
+except:
+ log('Syntax-highlighting test failed','error')
+ raise LdtpExecutionError(0)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+waittillguiexist('dlgQuestion')
+click('dlgQuestion','btnClosewithout*')
+waittillguinotexist('*gedit')
+log('Syntax-highlighting','testend')
diff --git a/gedit/SyntaxHighlight.xml b/gedit/SyntaxHighlight.xml
new file mode 100755
index 0000000..f3636a5
--- /dev/null
+++ b/gedit/SyntaxHighlight.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0"?>
+<data>
+ <lang0>C</lang0>
+ <keyw0>struct</keyw0>
+ <nonkeyw0>elif</nonkeyw0>
+ <langtype0>Sources</langtype0>
+
+ <lang1>Python</lang1>
+ <keyw1>elif</keyw1>
+ <nonkeyw1>define</nonkeyw1>
+ <langtype1>Scripts</langtype1>
+
+ <lang2>HTML</lang2>
+ <keyw2>&lt;html&gt;</keyw2>
+ <nonkeyw2>&lt;color&gt; </nonkeyw2>
+ <langtype2>Markup</langtype2>
+</data>
diff --git a/gedit/ViewToolbarOptions.py b/gedit/ViewToolbarOptions.py
new file mode 100755
index 0000000..d1e4721
--- /dev/null
+++ b/gedit/ViewToolbarOptions.py
@@ -0,0 +1,70 @@
+#############################################################################
+#
+# Linux Desktop Testing Project http://ldtp.freedesktop.org
+#
+# Author:
+# T V Lakshmi Narasimhan <lakshminaras2002@gmail.com>
+#
+# Copyright 2004 - 2006 Novell, Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+#
+#############################################################################
+
+from ldtp import *
+from ldtputils import *
+def testViewToolbarOptions():
+ try:
+ log('Testing View Toolbar Options','info')
+ if (menucheck('*gedit','mnuView;mnuStatusbar'))==1:
+ selectmenuitem('*gedit','mnuView;mnuStatusbar')
+ if (menucheck('*gedit','mnuView;mnuToolbar'))==1:
+ selectmenuitem('*gedit','mnuView;mnuToolbar')
+ time.sleep(3)
+ #check for buttons
+ a=getobjectlist('*gedit')
+ if 'mnuToolbar' in a:
+ retval=0
+ #check for statusbar
+ retval1=verifystatusbarvisible('*gedit','stat0')
+ time.sleep(3)
+ if (retval1==0 and retval==0):
+ log('Test View Toolbar Options Success','info')
+ else:
+ log('Test View Toolbar Options Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ except:
+ log('Test View Toolbar Options Failed','error')
+ raise LdtpExecutionError(0)
+ return
+ selectmenuitem('*gedit','mnuView;mnuStatusbar')
+
+
+
+try:
+ log('Test View Toolbar Options','teststart')
+ launchapp('gedit',1)
+ waittillguiexist('*gedit')
+ testViewToolbarOptions()
+except:
+ log('Test View Toolbar Options Failed','error')
+ raise LdtpExecutionError(0)
+selectmenuitem('*gedit','mnuFile;mnuQuit')
+time.sleep(5)
+if guiexist('dlgQuestion')==1:
+ click('dlgQuestion','btnClosewithoutSaving')
+log('Test View Toolbar Options','testend')
diff --git a/gedit/click-cancel-opendialog.py b/gedit/click-cancel-opendialog.py
deleted file mode 100644
index 5bef6c0..0000000
--- a/gedit/click-cancel-opendialog.py
+++ /dev/null
@@ -1,117 +0,0 @@
-#
-# Linux Desktop Testing Project http://www.gnomebangalore.org/ldtp
-#
-# Author:
-# Aishoo Team, Fasila
-# A. Nagappan <anagappan@novell.com>
-# J. Premkumar <jpremkumar@novell.com>
-#
-# Copyright 2004 Novell, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public
-# License along with this library; if not, write to the
-# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
-#
-
-# Click cancel in save as dialog box, after selecting a file
-
-from ldtp import *
-from ldtputils import *
-import string, sys, os, commands, time, filecmp
-
-default_dir = os.getcwd ()
-default_image_dir = default_dir + '/images'
-default_doc_dir = default_dir + '/doc'
-default_tmp_dir = default_dir + '/tmp'
-gedit_exe_path = 'gedit'
-
-if os.access (default_tmp_dir, os.F_OK | os.R_OK | os.W_OK | os.X_OK) == 0:
- os.mkdir (default_tmp_dir)
-
-log ('Click Cancel In Save As Dialog Box', 'teststart')
-try:
- #setcontext ('Unsaved Document 1 - gedit', 'gedit')
- selectmenuitem ('*gedit', 'mnuFile;mnuOpen')
-
- # Wait for 3 seconds, let the open dialog box window appear
- #time.sleep (3)
-
- if waittillguiexist ('dlgOpenFiles...') == 1:
- # TODO
- try:
- time.sleep (1)
- selectrow ('dlgOpenFiles...', 'tblFiles', 'EXAMPLES')
- click ('dlgOpenFiles...', 'btnOpen')
- except LdtpExecutionError:
- None
- try:
- time.sleep (1)
- selectrow ('dlgOpenFiles...', 'tblFiles', 'gedit')
- click ('dlgOpenFiles...', 'btnOpen')
- except LdtpExecutionError:
- None
- try:
- time.sleep (1)
- selectrow ('dlgOpenFiles...', 'tblFiles', 'tmp')
- click ('dlgOpenFiles...', 'btnOpen')
- except LdtpExecutionError:
- None
- time.sleep (1)
- # - Once GTK File Selector bug is resolved try to select some file from Filesystem shortcuts
- selectrow ('dlgOpenFiles...', 'tblFiles', 'sample.txt')
- # TODO
- # - Check if file does not exist
- click ('dlgOpenFiles...', 'btnOpen')
-
- if waittillguinotexist ('dlgOpenFiles...') == 0:
- log ('Open dialog box appears after opening file', 'error')
- log ('Click Cancel In Save As Dialog Box', 'fail')
- else:
- # TODO
- # Check if file opened successfully
- # Wait for 2 seconds, Let the file be loaded
- time.sleep (2)
- mo = re.match (os.path.expandvars ('$HOME'), default_tmp_dir)
- if str(mo) != "<type 'NoneType'>":
- newcontext = '~' + default_tmp_dir [mo.end():]
- else:
- newcontext = default_tmp_dir
- #releasecontext ()
- #setcontext ('Unsaved Document 1 - gedit', 'sample.txt ' + '(' + newcontext + ') - gedit')
- selectmenuitem ('*gedit', 'mnuFile;mnuSaveAs')
- # Wait for 2 seconds, Let the file be loaded
- time.sleep (2)
- if guiexist ('dlgSaveAs...') == 1:
- # btncancel is not working (hanged) - comment by fasila
- click ('dlgSaveAs...', 'btnCancel')
- # Wait for 2 seconds, Let the file be loaded
- time.sleep (2)
- if waittillguinotexist ('dlgSaveAs...') == 1:
- log ('Click Cancel In Save As Dialog Box', 'pass')
- else:
- log ('Save As dialog box still appears', 'error')
- log ('Click Cancel In Open Dialog Box', 'fail')
- else:
- log ('Save As dialog box does not appear', 'error')
- log ('Click Cancel In Save As Dialog Box', 'fail')
- else:
- log ('Open dialog box does not appear', 'error')
- log ('Click Cancel In Save As Dialog Box', 'fail')
- #releasecontext ()
- selectmenuitem ('*gedit','mnuFile;mnuQuit')
-except error, msg:
- #releasecontext ()
- log (str (msg), 'error')
- log ('Click Cancel In Save As Dialog Box', 'fail')
-log ('Click Cancel In Save As Dialog Box', 'testend')
diff --git a/gedit/click-cancel-saveas.py b/gedit/click-cancel-saveas.py
deleted file mode 100644
index ce8c45b..0000000
--- a/gedit/click-cancel-saveas.py
+++ /dev/null
@@ -1,66 +0,0 @@
-#
-# Linux Desktop Testing Project http://www.gnomebangalore.org/ldtp
-#
-# Author:
-# Aishoo Team, Fasila
-# A. Nagappan <anagappan@novell.com>
-# J. Premkumar <jpremkumar@novell.com>
-#
-# Copyright 2004 Novell, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public
-# License along with this library; if not, write to the
-# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
-#
-
-# Click cancel in open dialog box, after selecting a file
-from ldtp import *
-from ldtputils import *
-import string, sys, os, commands, time, filecmp
-
-default_dir = os.getcwd ()
-default_image_dir = default_dir + '/images'
-default_doc_dir = default_dir + '/doc'
-default_tmp_dir = default_dir + '/tmp'
-gedit_exe_path = 'gedit'
-
-if os.access (default_tmp_dir, os.F_OK | os.R_OK | os.W_OK | os.X_OK) == 0:
- os.mkdir (default_tmp_dir)
-
-
-log ('Click Cancel In Open Dialog Box', 'teststart')
-try:
- #setcontext ('Unsaved Document 1 - gedit', 'gedit')
- selectmenuitem ('*gedit', 'mnuFile;mnuOpen')
-
- # Wait for 3 seconds, let the open dialog box window appear
- time.sleep (3)
-
- if guiexist ('dlgOpenFiles...') == 1:
- # TODO
- # - Once GTK File Selector bug is resolved try to select some file from Filesystem shortcuts
- click ('dlgOpenFiles...', 'btnCancel')
- time.sleep (2)
- if guiexist ('dlgOpenFiles...') == 0:
- log ('Click Cancel In Open Dialog Box', 'pass')
- else:
- log ('Open dialog box still appears', 'error')
- log ('Click Cancel In Open Dialog Box', 'fail')
- else:
- log ('Open dialog box does not appear', 'error')
- log ('Click Cancel In Open Dialog Box', 'fail')
-except error, msg:
- log (str(msg), 'error')
- log ('Click Cancel In Open Dialog Box', 'fail')
-log ('Click Cancel In Open Dialog Box', 'testend')
diff --git a/gedit/create-new-file.py b/gedit/create-new-file.py
deleted file mode 100644
index b83559f..0000000
--- a/gedit/create-new-file.py
+++ /dev/null
@@ -1,92 +0,0 @@
-#
-# Linux Desktop Testing Project http://www.gnomebangalore.org/ldtp
-#
-# Author:
-# Aishoo Team, Fasila
-# A. Nagappan <anagappan@novell.com>
-# J. Premkumar <jpremkumar@novell.com>
-#
-# Copyright 2004 Novell, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public
-# License along with this library; if not, write to the
-# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
-#
-
-# Create a new document and save it
-from ldtp import *
-from ldtputils import *
-import string, sys, commands, time, filecmp
-import re, os
-
-default_dir = os.getcwd ()
-default_image_dir = default_dir + '/images'
-default_doc_dir = default_dir + '/doc'
-default_tmp_dir = default_dir + '/tmp'
-gedit_exe_path = 'gedit'
-
-if os.access (default_tmp_dir, os.F_OK | os.R_OK | os.W_OK | os.X_OK) == 0:
- os.mkdir (default_tmp_dir)
-
-log ('Create New Document', 'teststart')
-
-try:
- try:
- # Close all opened tab
- selectmenuitem ('*-gedit', 'mnuDocuments;mnuCloseAll')
- except error:
- log ('There maybe no documents opened', 'info')
-
- selectmenuitem ('*gedit', 'mnuFile;mnuNew')
- # TODO
- # - Verify new document window is opened
- # - Get text from pre-defined file maybe from default_doc_dir and use it in settextvalue function
- settextvalue ('*gedit', 'txt0', 'Testing gedit using GNU/Linux Desktop Testing Project')
-
- # TODO
- # - Verify text content placed properly
- selectmenuitem ('*gedit', 'mnuFile;mnuSaveAs')
-
- # Wait for 3 seconds, so that save as dialog window will appear
- time.sleep (3)
-
- # Check for dialog window
- if waittillguiexist ('dlgSaveAs...') == 1:
- settextvalue ('dlgSaveAs...', 'txtName', default_tmp_dir + '/sample.txt')
- click ('dlgSaveAs...', 'tbtnBrowseforotherfolders')
- selectrowindex ('dlgSaveAs...', 'tblShortcuts', 0)
- click ('dlgSaveAs...', 'btnSave')
- time.sleep (3)
- if guiexist ('*Question') == 1:
- click ('*Question', 'btnReplace')
- mo = re.match (os.path.expandvars ('$HOME'), default_tmp_dir)
- if str(mo) != "<type 'NoneType'>":
- newcontext = '~' + default_tmp_dir [mo.end():]
- else:
- newcontext = default_tmp_dir
- waittillguinotexist ('dlgQuestion')
- waittillguinotexist ('dlgSaveAs...')
- time.sleep (5)
- selectmenuitem ('*gedit', 'mnuDocuments;mnuCloseAll')
- # TODO
- # - Verify saved text file content using compare function
- log ('Create New Document', 'pass')
- else:
- log ('Save dialog does not appear', 'error')
- log ('Create New Document', 'fail')
-except:
- log ('Create New Document', 'fail')
- log ('Create New Document', 'testend')
- raise LdtpExecutionError (0)
-log ('Create New Document', 'testend')
diff --git a/gedit/file0 b/gedit/file0
new file mode 100644
index 0000000..c5e9ae0
--- /dev/null
+++ b/gedit/file0
@@ -0,0 +1 @@
+File 0 \ No newline at end of file
diff --git a/gedit/gedit-log.xml b/gedit/gedit-log.xml
new file mode 100644
index 0000000..e064360
--- /dev/null
+++ b/gedit/gedit-log.xml
@@ -0,0 +1,5231 @@
+<?xml version='1.0' encoding='utf-8'?>
+<!-- XML Logging -->
+<ldtp>
+<warning>testcaseid entry not present - skipping</warning>
+<warning>comment entry not present - skipping</warning>
+<group name="Executing-group1">
+<script name="CreateSaveFile.py">
+<datafilename>CreateSaveFile.xml</datafilename>
+<test name="Gedit-create-file">
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
+<error>Unable to update context: *gedit in appmap</error>
+<debug>Object definition *gedit not found in appmap</debug>
diff --git a/gedit/gedit.py b/gedit/gedit.py
deleted file mode 100755
index 4bf5bc9..0000000
--- a/gedit/gedit.py
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/usr/bin/python
-#
-# Linux Desktop Testing Project http://www.gnomebangalore.org/ldtp
-#
-# Author:
-# Aishoo, Fasila
-# A. Nagappan <anagappan@novell.com>
-# J. Premkumar <jpremkumar@novell.com>
-#
-# Copyright 2004 Novell, Inc.
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Library General Public
-# License as published by the Free Software Foundation; either
-# version 2 of the License, or (at your option) any later version.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Library General Public License for more details.
-#
-# You should have received a copy of the GNU Library General Public
-# License along with this library; if not, write to the
-# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
-#
-
-from ldtp import *
-from ldtputils import *
-import string, sys, os, commands, time, filecmp
-
-appmap_path = ''
-default_dir = os.getcwd ()
-default_image_dir = default_dir + '/images'
-default_doc_dir = default_dir + '/doc'
-default_tmp_dir = default_dir + '/tmp'
-gedit_exe_path = 'gedit'
-launchapp ('gedit',1)
-#bindtext ('gedit', '/opt/gnome/share/locale')
-#bindtext ('gtk20', '/opt/gnome/share/locale')
-
-
diff --git a/gedit/ldt b/gedit/ldt
new file mode 100644
index 0000000..c57aa6f
--- /dev/null
+++ b/gedit/ldt
@@ -0,0 +1 @@
+LDTP Testing
diff --git a/gedit/ldt~ b/gedit/ldt~
new file mode 100644
index 0000000..c57aa6f
--- /dev/null
+++ b/gedit/ldt~
@@ -0,0 +1 @@
+LDTP Testing
diff --git a/gedit/readme b/gedit/readme
new file mode 100644
index 0000000..690cb48
--- /dev/null
+++ b/gedit/readme
@@ -0,0 +1,23 @@
+Requirements : Gedit v.2.14.x, LDTP (>=0.5.0)
+
+This directory contains test automation scripts for gedit v.2.14. Most of the gedit functions have been automated. Some examples :
+* Saving documents
+* Help
+* Searching
+* Editing functions like cut, copy, paste, undo & redo, etc..,
+
+Note :
+* User name (Full name) should be entered (mandatory), for testing the Username plugin. (File to modify: gedit31-data.xml)
+* Some scripts attempt to create files (if not already existing) in the current directory, for testing editing/saving functionalities on existing files. If some files already exist, and should be used instead of default ones, please modify appropriate data xml files to specify the file names(Eg : gedit-data.xml)
+
+Run the following command prior to executing the scripts. This will set the LDTP command delay environment variable to 5 seconds (Necessary for some cases):
+
+ export LDTP_DELAY_CMD=5
+
+Then, to run the scripts, use the following command:
+
+ ldtprunner gedit-main.xml
+
+after changing into the ldtp_final directory.
+
+This will run the tests, starting from the test to launch gedit.
diff --git a/gedit/run.xml b/gedit/run.xml
deleted file mode 100644
index be282ff..0000000
--- a/gedit/run.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0"?>
-<ldtp>
- <logfileoverwrite>1</logfileoverwrite>
- <logfile>gedit-log.xml</logfile>
- <group>
- <script>
- <name>gedit.py</name>
- </script>
- <script>
- <name>create-new-file.py</name>
- </script>
- </group>
- <group>
- <script>
- <name>click-cancel-saveas.py</name>
- </script>
- <script>
- <name>click-cancel-opendialog.py</name>
- </script>
- </group>
-</ldtp>
diff --git a/gedit/t1 b/gedit/t1
new file mode 100644
index 0000000..11be598
--- /dev/null
+++ b/gedit/t1
@@ -0,0 +1,6 @@
+
+a
+asd
+hello
+sample text
+sample text
diff --git a/gedit/t1~ b/gedit/t1~
new file mode 100644
index 0000000..4a80f4a
--- /dev/null
+++ b/gedit/t1~
@@ -0,0 +1,5 @@
+
+a
+asd
+hello
+sample text
diff --git a/gedit/t2 b/gedit/t2
new file mode 100644
index 0000000..4f3a556
--- /dev/null
+++ b/gedit/t2
@@ -0,0 +1,7 @@
+qqwedas
+bweqw
+xqwe
+eaweqasdasdw
+eqweqw
+sampltext
+sample text
diff --git a/gedit/t2~ b/gedit/t2~
new file mode 100644
index 0000000..a9814b0
--- /dev/null
+++ b/gedit/t2~
@@ -0,0 +1,6 @@
+qqwedas
+bweqw
+xqwe
+eaweqasdasdw
+eqweqw
+sampltext