Thread: [SE|PY-CVS] SF.net SVN: sepy: [4]
Brought to you by:
sephiroth_tmm
From: <sep...@us...> - 2006-03-30 16:32:25
|
Revision: 4 Author: sephiroth_tmm Date: 2006-03-30 08:32:02 -0800 (Thu, 30 Mar 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=4&view=rev Log Message: ----------- fixes in the findnext position Modified Paths: -------------- SEPY.py core/team/cvs.py core/team/svn.py core/ui/dialogs/gotoline.py core/ui/panels/project/__init__.py core/ui/panels/variables/__init__.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-03-30 23:46:35
|
Revision: 5 Author: sephiroth_tmm Date: 2006-03-30 15:46:20 -0800 (Thu, 30 Mar 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=5&view=rev Log Message: ----------- Modified Paths: -------------- CHANGES core/ui/dialogs/workspace.py core/ui/panels/workspace/__init__.py Property Changed: ---------------- / data/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-03-31 09:59:47
|
Revision: 6 Author: sephiroth_tmm Date: 2006-03-31 01:59:30 -0800 (Fri, 31 Mar 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=6&view=rev Log Message: ----------- Modified Paths: -------------- SEPY.py core/documents/compare.py core/documents/editor.py core/documents/flex.py core/documents/swfmill.py core/documents/xhtml.py core/threads/Threads.py Modified: SEPY.py =================================================================== --- SEPY.py 2006-03-30 23:46:20 UTC (rev 5) +++ SEPY.py 2006-03-31 09:59:30 UTC (rev 6) @@ -39,6 +39,10 @@ else: from core.io.FileDropTarget import FileDropTarget + +import FrmStdoutStderr + + class main_window(wx.Frame): """ Main SEPY Window """ def __init__(self, *args, **kwds): @@ -2157,7 +2161,7 @@ try: import core.documents documentClass = getattr(core.documents, kwds.get('documentClass')) - view = documentClass.Document(panel, id, doc_name, self, text, **kwds) + view = documentClass.Editor(panel, id, doc_name, self, text, **kwds) except: self.notebook.Thaw() panel.Destroy() @@ -2687,8 +2691,6 @@ if doc.IsModifyed == 1: try: q_string = "%s %s ?" % (_("Do you want to save"), doc.filename) - except UnicodeDecodeError: - q_string = _("Do you want to save first?") except: q_string = _("Do you want to save first?") result = wx.MessageDialog(self, q_string, core.ui.dialogs.about.title, wx.YES_NO|wx.CANCEL|wx.ICON_EXCLAMATION).ShowModal() @@ -2704,10 +2706,10 @@ def ClearDocument(self, document, documentID, selection): """ clear document and send event to everyone """ - self.SendEvent("CLOSE", documentID) - document.isdying = True + document.Deleted = True document.Disconnect(-1, -1, stc.EVT_STC_PAINTED.evtType[0]) document.Disconnect(-1, -1, stc.EVT_STC_DWELLSTART.evtType[0]) + self.SendEvent("CLOSE", documentID) if document.MainThread: if document.MainThread.isAlive(): document.MainThread.stop() @@ -5336,6 +5338,7 @@ def OpenFrame(self): global frame frame = main_window(parent=None, id=wx.NewId(), title=core.ui.dialogs.about.title, dialog = None) + FrmStdoutStderr.FrameStdoutStderr(frame, -1, (400, 0), (500, 300)) def exc_hook(a,b,traceback): Modified: core/documents/compare.py =================================================================== --- core/documents/compare.py 2006-03-30 23:46:20 UTC (rev 5) +++ core/documents/compare.py 2006-03-31 09:59:30 UTC (rev 6) @@ -11,13 +11,14 @@ import editor from core.system.id import * -class Document(editor.Editor): +class Editor(editor.Editor): + def __init__(self, parent, id, filename, super_parent, text = '', **kwds): stc.StyledTextCtrl.__init__(self, parent ,id, wx.DefaultPosition, wx.DefaultSize, wx.TE_NOHIDESEL|wx.NO_FULL_REPAINT_ON_RESIZE, 'styledTextCtrl') self.log = super_parent.log self.custom = None self.MainThread = None - self.isdying = False + self.Deleted = False classpaths = None stat = kwds.get('stat', None) self.todolist = [] Modified: core/documents/editor.py =================================================================== --- core/documents/editor.py 2006-03-30 23:46:20 UTC (rev 5) +++ core/documents/editor.py 2006-03-31 09:59:30 UTC (rev 6) @@ -169,7 +169,7 @@ self.log = super_parent.log self.custom = CustomManager() self.MainThread = None - self.isdying = False + self.Deleted = False classpaths = kwds.get('classpaths', None) newlines = kwds.get('newlines', None) stat = kwds.get('stat', None) @@ -687,37 +687,45 @@ def onDwellStart(self, event): """ mouse stop moving for 2 seconds """ - if self.IsBeingDeleted(): return - event.Skip() + if Editor.IsDeleted(self): return + #event.Skip() if self.MainThread == None or not self.MainThread.isAlive(): del self.MainThread self.MainThread = core.threads.Threads.EditorParserThread(win=self) self.MainThread.start() + #wx.CallAfter(self.super_parent.OnCloseDocument, None) + @staticmethod + def IsDeleted(instance): + try: + if instance.Deleted: return True + return instance.IsBeingDeleted() + except wx.PyDeadObjectError: + return True + + def updateDocumentState(self,*args,**kwds): """ Update functions and variables """ - if self.isdying or not self.IsASFile(): return True + if Editor.IsDeleted(self): return True try: self.updateFunctionList() - if self.isdying: return True + if Editor.IsDeleted(self): return True self.updateVarsList() except: pass try: + if Editor.IsDeleted(self): return True self.super_parent.todoParser.CheckFile(self.GetId(),doc=self) - except wx.PyDeadObjectError: + except: pass - except AttributeError: - """ we should never have an Attribute Error here! """ - pass return True # execute thread def __execute__(self, fname, *args): try: - if not self.IsBeingDeleted(): + if not Editor.IsDeleted(self): return eval('self.%s' % fname)(*args) except TypeError: pass @@ -1785,6 +1793,7 @@ if not self.IsASFile(): return "",[] self.userFunctions = [] + if Editor.IsDeleted(self): return True self.initDB() self.updateKeywords() try: @@ -1792,15 +1801,17 @@ except: functionList = [] return "",[] + if Editor.IsDeleted(self): return True imported_class = re.finditer(core.system.patterns.i_pattern, self.GetText(), re.IGNORECASE|re.UNICODE|re.MULTILINE) if imported_class: while 1: + if Editor.IsDeleted(self): return True try: g = imported_class.next() functionList.append([g, g.end(), ""]) except StopIteration: break - if self.isdying: return True + if Editor.IsDeleted(self): return True self.super_parent.SendEvent('UPDFN', [self.GetId(), functionList]) self._matchProperties(self.GetText()) @@ -1851,7 +1862,7 @@ return h = self.varsPattern.finditer( word ) while 1: - if self.isdying: return True + if Editor.IsDeleted(self): return True try: g = h.next() except: @@ -1902,12 +1913,13 @@ Get the corresponding brace Used in GetFunctions """ + if Editor.IsDeleted(self): return -1 return self.BraceMatch(text.find("{", pos)) def GetFunctions(self, *args): """ Get file methods """ - if not self.IsASFile(): return [] + if not self.IsASFile() or Editor.IsDeleted(self): return [] try: text = self.GetTextRaw() except: @@ -1922,16 +1934,20 @@ comment = self.GetJavaDocCommentAt(class_g.start()) fn.append([class_g, nextPos, comment]) # matching all methods + if Editor.IsDeleted(self): return [] self.__calltips = {} met_g = self.m_pattern.finditer(text) while 1: - if self.isdying: return True + if Editor.IsDeleted(self): return True try: g = met_g.next() except: break + if Editor.IsDeleted(self): return True if not self._isInvalidStyleAt(g.end()): + if Editor.IsDeleted(self): return True nextPos = self.GetBracePosition(text,g.end()) + if Editor.IsDeleted(self): return True comment = self.GetJavaDocCommentAt(g.start()) # add the current function declaration to the calltip list @@ -1948,8 +1964,8 @@ full_name = gd.get('name3') ret_type = gd.get('return_type3') param_list = gd.get('param_list3') + if Editor.IsDeleted(self): return True self.__calltips[full_name] = "%s(%s) %s" % (full_name, param_list, ret_type) - fn.append([g, nextPos, comment]) return fn @@ -1960,7 +1976,7 @@ # ****************************** def GetJavaDocCommentAt(self, position): pos_start = position - if position < 2: + if position < 2 or Editor.IsDeleted(self): return "" #comment_end_pos = pos_start pos_start = comment_end_pos = self.PositionFromLine(self.LineFromPosition(pos_start)) @@ -1971,6 +1987,7 @@ stc.STC_C_COMMENT, \ stc.STC_C_COMMENTDOCKEYWORDERROR, \ stc.STC_C_DEFAULT]: + if Editor.IsDeleted(self): return True pos_start -= 1 if pos_start < 0: break @@ -1985,7 +2002,7 @@ # ************************************ def updateVarsList(self): for line in xrange(self.GetLineCount()): - if self.isdying: return True + if Editor.IsDeleted(self): return True currentLine = self.GetLine(line) try: self._matchVars(currentLine) @@ -2131,7 +2148,7 @@ """Scintilla has just painted""" evt.Skip() try: - if not self.IsBeingDeleted(): + if not Editor.IsDeleted(self): wx.CallAfter(self.UpdateBorder, False) except TypeError: pass @@ -2623,7 +2640,7 @@ def UpdateBorder(self, forceRefresh=False): """ call the border panel instance refresh """ try: - if not self.IsBeingDeleted(): + if not Editor.IsDeleted(self): self.border_panel.UpdateBorder(force=forceRefresh) except wx.PyDeadObjectError: pass Modified: core/documents/flex.py =================================================================== --- core/documents/flex.py 2006-03-30 23:46:20 UTC (rev 5) +++ core/documents/flex.py 2006-03-31 09:59:30 UTC (rev 6) @@ -131,12 +131,11 @@ def __init__(self, parent, id, filename, super_parent, text = '', **kwds): stc.StyledTextCtrl.__init__(self, parent ,id, wx.DefaultPosition, wx.DefaultSize, wx.TE_NOHIDESEL|wx.NO_FULL_REPAINT_ON_RESIZE, 'styledTextCtrl') self.log = super_parent.log - global log log = self.log self.custom = FlexManager(os.path.join(super_parent.base_path, "data", "flex.sqlite")) self.parser = FlexParser() self.MainThread = None - self.isdying = False + self.Deleted = False classpaths = kwds.get('classpaths', None) newlines = kwds.get('newlines', None) stat = kwds.get('stat', None) @@ -515,7 +514,6 @@ self.log.error(str(why)) functionList = [] return "",[] - if self.isdying: return True def GetFunctions(self, *args): Modified: core/documents/swfmill.py =================================================================== --- core/documents/swfmill.py 2006-03-30 23:46:20 UTC (rev 5) +++ core/documents/swfmill.py 2006-03-31 09:59:30 UTC (rev 6) @@ -174,12 +174,11 @@ def __init__(self, parent, id, filename, super_parent, text = '', **kwds): stc.StyledTextCtrl.__init__(self, parent ,id, wx.DefaultPosition, wx.DefaultSize, wx.TE_NOHIDESEL|wx.NO_FULL_REPAINT_ON_RESIZE, 'styledTextCtrl') self.log = super_parent.log - global log log = self.log self.custom = SwfmlManager(os.path.join(super_parent.base_path, "data", "swfmill.sqlite")) self.parser = SWFMLParser() self.MainThread = None - self.isdying = False + self.Deleted = False classpaths = kwds.get('classpaths', None) newlines = kwds.get('newlines', None) stat = kwds.get('stat', None) @@ -337,7 +336,7 @@ def __execute__(self, fname, *args): """ execute thread """ - if not self.IsBeingDeleted(): + if not Editor.IsDeleted(self): return eval('self.%s' % fname)(*args) @@ -576,7 +575,6 @@ except Exception, why: functionList = [] return "",[] - if self.isdying: return True def GetFunctions(self, *args): Modified: core/documents/xhtml.py =================================================================== --- core/documents/xhtml.py 2006-03-30 23:46:20 UTC (rev 5) +++ core/documents/xhtml.py 2006-03-31 09:59:30 UTC (rev 6) @@ -139,17 +139,16 @@ class Editor(swfmill.Editor): """ - Flex Editor Class + XHTML Editor Class """ def __init__(self, parent, id, filename, super_parent, text = '', **kwds): stc.StyledTextCtrl.__init__(self, parent ,id, wx.DefaultPosition, wx.DefaultSize, wx.TE_NOHIDESEL|wx.NO_FULL_REPAINT_ON_RESIZE, 'styledTextCtrl') self.log = super_parent.log - global log log = self.log self.custom = XMLManager(os.path.join(super_parent.base_path, "data", "xhtml.sqlite")) self.parser = XmlParser() self.MainThread = None - self.isdying = False + self.Deleted = False classpaths = kwds.get('classpaths', None) newlines = kwds.get('newlines', None) stat = kwds.get('stat', None) @@ -506,8 +505,6 @@ self.log.error(str(why)) functionList = [] return "",[] - if self.isdying: return True - #self.super_parent.SendEvent('UPDFN', [self.GetId(), functionList]) def GetFunctions(self, *args): self.parser.RefreshTokens(self.GetText()) Modified: core/threads/Threads.py =================================================================== --- core/threads/Threads.py 2006-03-30 23:46:20 UTC (rev 5) +++ core/threads/Threads.py 2006-03-31 09:59:30 UTC (rev 6) @@ -2,8 +2,10 @@ # -*- coding: utf-8 -*- # @version $Id: Threads.py,v 1.1 2006/03/26 12:59:24 sephiroth_tmm Exp $ +import sys import threading import wx +import core.documents.editor # ************************* # Thread class @@ -28,10 +30,11 @@ sem.acquire() try: if self.win and not isinstance(self.win, wx.PyDeadObjectError): - if not self.win.IsBeingDeleted(): + if not core.documents.editor.Editor.IsDeleted(self.win): self.win.updateDocumentState() finally: sem.release() def stop(self): + self.win.Deleted = True self.win = None This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-03-31 11:34:59
|
Revision: 7 Author: sephiroth_tmm Date: 2006-03-31 03:34:47 -0800 (Fri, 31 Mar 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=7&view=rev Log Message: ----------- Modified Paths: -------------- SEPY.py core/documents/editor.py core/ui/panels/workspace/__init__.py Modified: SEPY.py =================================================================== --- SEPY.py 2006-03-31 09:59:30 UTC (rev 6) +++ SEPY.py 2006-03-31 11:34:47 UTC (rev 7) @@ -40,9 +40,6 @@ from core.io.FileDropTarget import FileDropTarget -import FrmStdoutStderr - - class main_window(wx.Frame): """ Main SEPY Window """ def __init__(self, *args, **kwds): @@ -1140,6 +1137,16 @@ break + def GetSelectionById(self, id): + """ find the document instance from its id """ + for line in xrange(self.notebook.GetPageCount()): + doc = self.GetTextCtrl(sel=line) + if doc.GetId() == id: + return line + else: + return None + + def CheckFolderPathFromProject(self, item): """ check if selected folder exists in the filesystem path @@ -2687,7 +2694,6 @@ return doc = self.GetTextCtrl(self.notebook.GetPage(sel).GetId()) del_id = doc.GetId() - ''' save document to filemanager ''' if doc.IsModifyed == 1: try: q_string = "%s %s ?" % (_("Do you want to save"), doc.filename) @@ -2709,15 +2715,20 @@ document.Deleted = True document.Disconnect(-1, -1, stc.EVT_STC_PAINTED.evtType[0]) document.Disconnect(-1, -1, stc.EVT_STC_DWELLSTART.evtType[0]) - self.SendEvent("CLOSE", documentID) if document.MainThread: if document.MainThread.isAlive(): + # Wait until the current tread die + document.MainThread.join() document.MainThread.stop() - del document.MainThread + document.MainThread = None + # Stop the closing operation if the + # document thread is running? + #return False try: document.SaveTimer.Stop() except: pass + self.SendEvent("CLOSE", documentID) self.sqlmanager.AddItem(document) self.notebook.DeletePage(selection) if self.notebook.GetPageCount() == 0: @@ -2727,9 +2738,19 @@ self.mainmenu.Enable(ID_SAVE, 0) self.mainmenu.Enable(ID_SAVA, 0) - # -- - # -- SESSION - # -- + + + def ClearDocumentById(self, document): + """ + execute the ClearDocument() method using the document id + to find the current notebook selection first + """ + sel = self.GetSelectionById(document.GetId()) + if sel != None: + self.ClearDocument(document, document.GetId(), sel) + + + def EnableSessionMenu(self, evt): if evt: self.menu.FindItemById(ID_SESS_SAVE).Enable(1) @@ -5338,9 +5359,12 @@ def OpenFrame(self): global frame frame = main_window(parent=None, id=wx.NewId(), title=core.ui.dialogs.about.title, dialog = None) - FrmStdoutStderr.FrameStdoutStderr(frame, -1, (400, 0), (500, 300)) + # For testing threads using only one output window + # import FrmStdoutStderr + # FrmStdoutStderr.FrameStdoutStderr(frame, -1, (400, 0), (500, 300)) + def exc_hook(a,b,traceback): global frame """ Modified: core/documents/editor.py =================================================================== --- core/documents/editor.py 2006-03-31 09:59:30 UTC (rev 6) +++ core/documents/editor.py 2006-03-31 11:34:47 UTC (rev 7) @@ -686,14 +686,15 @@ wx.CallAfter(self.super_parent.DisableMenuIfNotModified, False ) def onDwellStart(self, event): - """ mouse stop moving for 2 seconds """ + """ mouse stop moving for n seconds """ if Editor.IsDeleted(self): return - #event.Skip() if self.MainThread == None or not self.MainThread.isAlive(): - del self.MainThread + self.MainThread = None self.MainThread = core.threads.Threads.EditorParserThread(win=self) self.MainThread.start() - #wx.CallAfter(self.super_parent.OnCloseDocument, None) + # Test the thread crash by closing the document itself + # just after thread has been invoked + # wx.CallAfter(self.super_parent.OnCloseDocument, None) @staticmethod Modified: core/ui/panels/workspace/__init__.py =================================================================== --- core/ui/panels/workspace/__init__.py 2006-03-31 09:59:30 UTC (rev 6) +++ core/ui/panels/workspace/__init__.py 2006-03-31 11:34:47 UTC (rev 7) @@ -36,7 +36,7 @@ from xml.parsers.expat import ExpatError -__version__ = "1.6.5" +__version__ = "1.6.6" wx.ID_FILE32, wx.ID_FILE33, wx.ID_FILE34, wx.ID_FILE35, wx.ID_FILE36, wx.ID_FILE37, wx.ID_FILE38, wx.ID_FILE39, wx.ID_FILE40, wx.ID_FILE41, wx.ID_FILE42 = [wx.NewId() for line in xrange(11)] @@ -2082,7 +2082,6 @@ except WindowsError, why: wx.LogWarning(str(why)) return - sc = prj.GetCommands().values() for line in ls: realname = os.path.join(path, line) if os.path.isdir(realname): @@ -2137,10 +2136,13 @@ nitem.SetData(data) newitem = self.tree.AppendItem(item, line, index, index, nitem) + sc = prj.GetCommands().values() for command in sc: if id == command.get('parent_id'): s_path = os.path.normpath(command.get('pathname')).split(os.path.sep) - if path.split(os.path.sep)[-len(s_path):] == s_path: + t_data = self.tree.GetPyData(item) + if (path.split(os.path.sep)[-len(s_path):] == s_path) \ + or (int(t_data.get('type', -1)) == PROJECT_LINKED_FOLDER and t_data.get('id') == command.get('parent_id')): data = dict(type=command.get("type"), name=command.get('name'), exp="", location=command.get('location'), pathname=command.get("pathname"), path=prj.GetProjectFile(), prj=prj, parent_id=command.get('parent_id'), id=command.get('id'), parsed=False) nitem = wx.TreeItemData() nitem.SetData(data) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-03-31 15:52:09
|
Revision: 8 Author: sephiroth_tmm Date: 2006-03-31 07:51:24 -0800 (Fri, 31 Mar 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=8&view=rev Log Message: ----------- Modified Paths: -------------- SEPY.py core/documents/editor.py core/io/actionscript/todoparser.py core/ui/dialogs/findfile.py core/ui/panels/__init__.py core/ui/panels/api/__init__.py core/ui/panels/clipboard/__init__.py core/ui/panels/files/__init__.py core/ui/panels/functions/__init__.py core/ui/panels/package/__init__.py core/ui/panels/project/__init__.py core/ui/panels/snippets/__init__.py core/ui/panels/todo/__init__.py core/ui/panels/unicodes/__init__.py core/ui/panels/variables/__init__.py core/ui/panels/workspace/__init__.py core/ui/panels/xml/__init__.py core/utils/mtasc.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-03-31 17:52:24
|
Revision: 9 Author: sephiroth_tmm Date: 2006-03-31 09:52:08 -0800 (Fri, 31 Mar 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=9&view=rev Log Message: ----------- Modified Paths: -------------- CHANGES SEPY.py core/ui/panels/functions/__init__.py Property Changed: ---------------- / This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-03-31 23:36:32
|
Revision: 10 Author: sephiroth_tmm Date: 2006-03-31 15:36:18 -0800 (Fri, 31 Mar 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=10&view=rev Log Message: ----------- fixed mac errors Modified Paths: -------------- SEPY.py core/ui/panels/__init__.py core/ui/panels/workspace/__init__.py core/utils/logger.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-01 00:15:43
|
Revision: 12 Author: sephiroth_tmm Date: 2006-03-31 16:15:24 -0800 (Fri, 31 Mar 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=12&view=rev Log Message: ----------- mac fix Modified Paths: -------------- SEPY.py core/documents/editor.py core/ui/dialogs/preferences.py core/ui/panels/__init__.py core/ui/panels/files/__init__.py core/ui/panels/workspace/__init__.py Added Paths: ----------- core/ui/panels/files/WinDirCtrl.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-01 15:37:54
|
Revision: 16 Author: sephiroth_tmm Date: 2006-04-01 07:37:15 -0800 (Sat, 01 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=16&view=rev Log Message: ----------- Modified Paths: -------------- SEPY_de.po SEPY_en.po SEPY_fr.po SEPY_it.po SEPY_nl.po SEPY_pt.po app.fil install/compile_po.bat install/refresh_po.bat locale/de/LC_MESSAGES/SEPY.mo locale/en/LC_MESSAGES/SEPY.mo locale/fr/LC_MESSAGES/SEPY.mo locale/it/LC_MESSAGES/SEPY.mo locale/nl/LC_MESSAGES/SEPY.mo messages.pot This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-02 23:38:07
|
Revision: 22 Author: sephiroth_tmm Date: 2006-04-02 16:37:53 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=22&view=rev Log Message: ----------- Modified Paths: -------------- SEPY.py Added Paths: ----------- ReplaceFiles.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-03 11:39:01
|
Revision: 24 Author: sephiroth_tmm Date: 2006-04-03 04:38:53 -0700 (Mon, 03 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=24&view=rev Log Message: ----------- Modified Paths: -------------- ReplaceFiles.py ReplaceFiles.pyw core/version.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-04 20:05:39
|
Revision: 31 Author: sephiroth_tmm Date: 2006-04-04 13:05:16 -0700 (Tue, 04 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=31&view=rev Log Message: ----------- Modified Paths: -------------- CHANGES SEPY.py core/ui/panels/workspace/__init__.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-05 07:53:12
|
Revision: 34 Author: sephiroth_tmm Date: 2006-04-05 00:53:05 -0700 (Wed, 05 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=34&view=rev Log Message: ----------- Modified Paths: -------------- ReplaceFiles.pyw setup_replacer.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-05 14:38:50
|
Revision: 39 Author: sephiroth_tmm Date: 2006-04-05 07:38:37 -0700 (Wed, 05 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=39&view=rev Log Message: ----------- Modified Paths: -------------- SEPY.py core/ui/dialogs/preferences.py core/ui/dialogs/workspace.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-05 15:23:43
|
Revision: 40 Author: sephiroth_tmm Date: 2006-04-05 08:23:33 -0700 (Wed, 05 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=40&view=rev Log Message: ----------- Modified Paths: -------------- CHANGES ReplaceFiles.py ReplaceFiles.pyw This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-06 13:14:16
|
Revision: 43 Author: sephiroth_tmm Date: 2006-04-06 06:13:52 -0700 (Thu, 06 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=43&view=rev Log Message: ----------- Modified Paths: -------------- SEPY.py core/ui/dialogs/preferences.py core/ui/panels/workspace/__init__.py core/utils/mtasc.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-08 14:10:17
|
Revision: 56 Author: sephiroth_tmm Date: 2006-04-08 07:09:59 -0700 (Sat, 08 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=56&view=rev Log Message: ----------- Modified Paths: -------------- ReplaceFiles.py ReplaceFiles.pyw core/ui/dialogs/sharedobjectreader/__init__.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-05-01 15:51:00
|
Revision: 67 Author: sephiroth_tmm Date: 2006-05-01 08:50:45 -0700 (Mon, 01 May 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=67&view=rev Log Message: ----------- Modified Paths: -------------- SEPY.py core/ui/dialogs/preferences.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-05-13 14:12:07
|
Revision: 79 Author: sephiroth_tmm Date: 2006-05-13 07:11:11 -0700 (Sat, 13 May 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=79&view=rev Log Message: ----------- Modified Paths: -------------- SEPY.py core/__init__.py core/config/apiloader.py core/documents/editor.py core/documents/swfmill.py core/io/filemanager.py core/team/dialogs.py core/team/svn.py core/ui/dialogs/__init__.py core/ui/dialogs/about.py core/ui/dialogs/aswizard.py core/ui/dialogs/comparefiles.py core/ui/dialogs/error.py core/ui/dialogs/fast_open.py core/ui/dialogs/preferences.py core/ui/dialogs/sharedobjectreader/__init__.py core/ui/dialogs/sortlines.py core/ui/dialogs/workspace.py core/ui/panels/files/GenericWinDirCtrl.py core/ui/panels/package/__init__.py core/ui/panels/project/__init__.py core/ui/panels/snippets/__init__.py core/ui/panels/workspace/__init__.py core/ui/panels/xml/dialogs.py core/utils/flush.py core/utils/iconutils.py main.pyw This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-06-22 17:20:48
|
Revision: 91 Author: sephiroth_tmm Date: 2006-06-22 10:20:33 -0700 (Thu, 22 Jun 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=91&view=rev Log Message: ----------- Modified Paths: -------------- SEPY.py data/flash.api This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-06-23 23:11:04
|
Revision: 92 Author: sephiroth_tmm Date: 2006-06-23 16:10:52 -0700 (Fri, 23 Jun 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=92&view=rev Log Message: ----------- Modified Paths: -------------- CHANGES core/documents/editor.py core/system/id.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-11-17 20:50:43
|
Revision: 169 http://svn.sourceforge.net/sepy/?rev=169&view=rev Author: sephiroth_tmm Date: 2006-11-17 12:50:41 -0800 (Fri, 17 Nov 2006) Log Message: ----------- Modified Paths: -------------- SEPY.py core/ui/dialogs/error.py core/version.py main.pyw Added Paths: ----------- install/nsis.nsi This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-11-18 13:52:17
|
Revision: 171 http://svn.sourceforge.net/sepy/?rev=171&view=rev Author: sephiroth_tmm Date: 2006-11-18 05:52:12 -0800 (Sat, 18 Nov 2006) Log Message: ----------- Modified Paths: -------------- CHANGES core/ui/dialogs/flash_help.py install/nsis.nsi Added Paths: ----------- install/install.ico install/uninstall.ico This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-01 10:01:44
|
Revision: 13 Author: sephiroth_tmm Date: 2006-04-01 02:01:23 -0800 (Sat, 01 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=13&view=rev Log Message: ----------- more mac fixes Modified Paths: -------------- SEPY.py core/documents/editor.py core/ui/dialogs/comparefiles.py core/ui/dialogs/error.py core/ui/panels/functions/__init__.py This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sep...@us...> - 2006-04-02 10:31:11
|
Revision: 20 Author: sephiroth_tmm Date: 2006-04-02 03:30:55 -0700 (Sun, 02 Apr 2006) ViewCVS: http://svn.sourceforge.net/sepy/?rev=20&view=rev Log Message: ----------- Modified Paths: -------------- core/__init__.py core/ui/dialogs/about.py setup.py Added Paths: ----------- core/version.py Property Changed: ---------------- / This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |