Changes between Version 6 and Version 7 of Maintenance and architecture list
- Timestamp:
- Aug 4, 2011, 11:50:29 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Maintenance and architecture list
v6 v7 3 3 - remove all uses of Deprecated classes and then remove the classes themselves 4 4 5 - finish renaming kjs_xxx files in WebCore/bindings/jsto more sensible names5 - finish renaming `kjs_xxx` files in `WebCore/bindings/js` to more sensible names 6 6 - move things defined in WebCore but in the KJS namespace into the WebCore namespace 7 7 … … 12 12 - rename the KJS namespace to JavaScriptCore 13 13 14 - finish code moves from Frame to other classes (documented with comments in Frame.h)14 - finish code moves from `Frame` to other classes (documented with comments in `Frame.h`) 15 15 16 - change CompositeEditCommand and EditCommand to not be derived and base any more; just separate classes16 - change `CompositeEditCommand` and `EditCommand` to separate classes (not derived and base any more) 17 17 - restructure undo handling for edit commands so that the the number of different types of undoable steps is smaller and they have much smaller granularity; we can write more robust versions of them 18 18 19 - eliminate raw pointer use in favor of RefPtr/PassRefPtr20 - move ref/derefclasses to the "start with 1" rather than "start with 0" approach19 - eliminate raw pointer use in favor of `RefPtr`/`PassRefPtr` 20 - move `ref`/`deref` classes to the "start with 1" rather than "start with 0" approach 21 21 22 - fix config.hsituation22 - fix `config.h` situation 23 23 24 The config.hfile really only exists for platforms that don't have a "prefix header" mechanism.24 The `config.h` file really only exists for platforms that don't have a "prefix header" mechanism. 25 25 26 1) On platforms with a prefix header, it should only have enough contents to make sure you get an error if you forget to include it. 26 1. On platforms with a prefix header, it should only have enough contents to make sure you get an error if you forget to include it. 27 2. Common things that need to be included everywhere should be in a separate header, which should be included in the prefix header on platforms that have it, and in `config.h` on platforms that don't. 28 3. We probably shouldn't have a shared cross-platform file named `config.h`. For example, people building with autotools will want to use it to create `config.h`. 27 29 28 2) Common things that need to be included everywhere should be in a separate header, which should be included in the prefix header on platforms that have it, and in config.h on platforms that don't.30 - fix platform `ifdefs` that are sprinkled around instead of being concentrated in the platform directory 29 31 30 3) We probably should not have a shared cross-platform file named config.h. For example, people building with autotools will want to use it to create config.h.32 It's okay to have platform-specific code anywhere there's a good reason, but `<canvas>` is a good example of how '''not''' to do it. 31 33 32 - fix platform ifdefs that are sprinkled around instead of being concentrated in the platform directory 33 34 It's OK to have platform-specific code anywhere if there's a good reason, but <canvas> is a good example of how not to do it. 35 36 - rationalize the top-level platform names 34 - rationalize top-level platform names 37 35 38 36 Need a name for the Windows CoreGraphics port and the Windows Cairo port. … … 43 41 44 42 - apply style guidelines more consistently to existing code 45 - fix all the header guards to match thefilenames by running `clean-header-guards`43 - fix all header guards to match filenames by running `clean-header-guards` 46 44 47 45 - move Objective-C bindings generation into Mac WebKit … … 49 47 - move code that doesn't belong in WebCore into Mac WebKit 50 48 51 Make the core perl script modular enough that the Objective-C stuff can live in WebKit. Eliminate the scripts that copy all the headers.49 Make the core Perl script modular enough that the Objective-C stuff can live in WebKit. Eliminate the scripts that copy all the headers. 52 50 There's still a lot of crap in there that can be moved down. WebKit is for binding to the Mac API and to Objective-C. 53 51 Things like the Objective-C accessibility wrappers should be in WebKit, with a C++ version in WebCore.