Warning |
---|
Work in progress |
The WebObjects frameworks are available on the Xcode tools, which cannot be install on a Windows (or any other Linux/UNIX variant) machine. Before developing on Windows, you need to get access on a Mac, make a archive of the frameworks and move this archive to your Windows machine. You can fetch the frameworks without having to install them on the Mac.
Code Block |
---|
cp /Volumes/Xcode\ Tools/Packages/Packages/WebObjectsRuntime.pkg/Contents/Archive.pax.gz /tmp
cd /tmp
unzip Archive.pax.gz
pax -r -f Archive.pax
tar cf WebObjectsRuntime.tar Library System
cp WebObjectsRuntime.tar -> Windows
|
1) Create the structure:
C:\Apple
C:\Apple\Local\Library\Frameworks (equivalent to /Library/Frameworks on the Mac)
C:\Apple\Library\Frameworks (equivalent to /System/Library/Frameworks on the Mac)
...
6) Install WOLips nightly from http://webobjects.mdimension.com/wolips/nightly
That should be it, I think? The things that are problematic right now on Windows:
1) The woproject/.patternset don't work quite right on Windows. If you don't have subfolders in your Resources/Components/etc, you can work around it by converting Components///etc/* to Components/, same w/ Resources and WebServerResources
2) Couple images have backgrounds that should not
3) Outline view in component editor is not right
4) AutoOpenInBrowser doesn't work unless you override Application._isSupportedDevelopmentPlatform to return true
...