0
I Use This!
Inactive

Commits : Listings

Analyzed about 12 hours ago. based on code collected about 20 hours ago.
May 03, 2023 — May 03, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Removed debug alert. More... over 20 years ago
Added some notes about the selection and colorchooser fixes. More... over 20 years ago
Fixed bgcolor support in IE More... over 20 years ago
Fixed the IE problem where the selection got lost by storing the selection on every 'onbeforedeactivate' event (yes, rather icky, hope it works in all versions!). Alos fixed the colorchooser table. More... over 20 years ago
Update for upcoming release More... over 20 years ago
Removed debug logMessage More... over 20 years ago
Fixed issue with table align. More... over 20 years ago
Fixed some table bugs. For the 1.0 release I deciced to remove the colspan and rowspan stuff, it's not supported in Epoz anyway and it made the code really hard to read. I'll probably add it later on. More... over 20 years ago
Remove debugging stuff, plus .getInnerDocument which wasn't used. More... over 20 years ago
Test document for a really crappy Word HTML conversion. More... over 20 years ago
Merged with latest changes. Added in XHTML Basic filtering. I left in some debug code which appends a textarea to see the output of html2xhtml. I'll remove it after I get html2xhtml to descend into bad elements, looking for good elements. More... over 20 years ago
Modified the table a bit to disguise some problems with the table tool. Obviously they need to be fixed asap! More... over 20 years ago
The colorchooser table is now generated with DOM functionality rather then using document.write(). More... over 20 years ago
Added small remark about event bindings. More... over 20 years ago
Added tools API More... over 20 years ago
JavaScript extension API documentation. More... over 20 years ago
Removed some trash. More... over 20 years ago
Fixed reload_after_save, it's now no longer required to do a full-save, both IE and Mozilla (Firebird) seem to be quite happy with reloading the iframe now. Obviously this needs to be tested on more browsers to be sure it works in all situations. Also removed the path tool, since it had the rather nasty habit of breaking the layout and its information can just as well be shown in the status bar imo (if anyone objects, please let me know, it's a piece of cake to change). More... over 20 years ago
Fixed the remaining issues with the table editor, adding and removing columns and rows now all works correctly, keeping th's into account and such. More... over 20 years ago
Fixed TableTool.addColumn, now it adds ths as well if it has to. More... over 20 years ago
Removed references to document. More... over 20 years ago
Fixed some rather nasty issues with updateState: made the handler filter out all 'uninteresting events' (like 'normal' keypresses, only enter, cursor keys etc. will trigger updateState from now on, which makes a large difference in responsiveness while editing) and also made the updateState be called on keyup rather then keypress (so the keypress already had its effect and updateState actually updated to the situation *after* the keypress instead of to that before). Also fixed some small bugs and broken IE support (small bug in addEventHandler). More... over 20 years ago
Finally found out how to fix the 'self' hakc properly, whenever necessary a function can be wrapped in an object that will contain a reference to the context in which the method should be executed. This code is understandable, doesn't have the weird side-effects the self hack had, allows subclassing without quirks and, especially since it can be used quite isolated, requires very little code modification. More... over 20 years ago
Fixed some bugs in Timer: the arguments got passed in as an array instead of seperately, and also now there's a new argument to set the context (this) of the function. Also noticed that in case the number of times registerFunction was called was more than 100000 it went into an infinite loop, fixed that as well. More... over 20 years ago
All access to the document object is now done through editor.getDocument(). Fixed an infinite loop problem in setDesignModeWhenReady along the way. More... over 20 years ago
Fixed updateState for the table tool so align and class are selected correctly from the selects. Also made sure everything is done in CSS if in CSS mode. More... over 20 years ago
Fixed small bug that made tables sometimes end up outside of the iframe when they were added. More... over 20 years ago
Changed the code so it resembles that in epozeditor.js, instead of to the ui a reference to the editor is returned. This rules out the need to make a global reference to tools. More... over 20 years ago
modified initEpoz so it returns a reference to the EpozEditor instance instead of to the EpozUI instance. The EpozUI instance can be retrieved from the editor object by calling epoz.getTool('ui') so a reference can easily be obtained from the object, and also references to other tools can be obtained this way. This makes the lot a bit more flexible and it rules out the need for delegating methods on the UI object (getTool, registerTool). More... over 20 years ago
Added an alternative implementation of setTimeout to overcome certain, ehrm, anomalies in the original, such as not being able to call functions by reference or methods on the current object (this wouldn't get resolved correctly), and not being able to pass in variables that aren't global as arguments. More... over 20 years ago