http://cloud.github.com/downloads/luddep/LPKit-Examples/LPKit-Atlas.zip
It's using a built version of LPKit as well as symlinked (capp gen -l -
f --force) frameworks, which in turn is built from the latest jake
branch.
Hope this helps,
Ludwig
I downloaded your zipped file.
Clicked on the index.html file - nothing loads due to missing
frameworks.
In the Foundation folder, replaced your aliases of AppKit, Foundation,
Objective-J with my latest copies from Atlas.
Clicked on the index.html file.
Sample loads and works. (fonts display as a serif font, not like your
online example).
Now for Atlas I opened the project file.
Clicked Build and Run.
Atlas displays a vague dialog message:
"An error occured while building
No such file or directory."
The problem seems to be that building in Atlas only builds and copies
the official frameworks from the Frameworks directory.
To get around this, you can change the import statements, (both yours
and in the few LPKit sources that have imports from itself) to @import
"LPKit/.......j". Now, this will still not work by building in Atlas,
because Atlas seems to only get directories copied to the built
directory if they are in the Resources folder.
So, add LPKit directory to resources, and go through all your files
and LPKit's files replacing @import <LPKit/etc.j> with @import
"Resources/LPKit/etc.j"
Now Build and Run should work.
Be sure to use the latest cappuccino frameworks (built from source,
*not* downloaded with atlas).
LPKit is quite bleeding edge, but as soon as the next point version of
cappuccino is released, I'll put up a compiled 0.1 version.
Meelash, There's no need for that.
I placed the already built LPKit (just run jake in its directory, or
copy the files from the .zip I linked) in Frameworks/, and it compiled
without any problems.
On Jan 20, 12:09 pm, luddep <lud...@gmail.com> wrote:
> > In the Foundation folder, replaced your aliases of AppKit, Foundation,
>
> Be sure to use the latest cappuccino frameworks (built from source,
> *not* downloaded with atlas).
> LPKit is quite bleeding edge, but as soon as the next point version of
> cappuccino is released, I'll put up a compiled 0.1 version.
>
> Meelash, There's no need for that.
> I placed the already built LPKit (just run jake in its directory, or
> copy the files from the .zip I linked) in Frameworks/, and it compiled
> without any problems.
>
> On Jan 20, 5:47 pm,meelash<meel...@gmail.com> wrote:
>
>
>
> > I'm not sure if this is the right way to get this working, but it
> > works:
>
> > The problem seems to be that building in Atlas only builds and copies
> > the official frameworks from the Frameworks directory.
>
> > To get around this, you can change the import statements, (both yours
> > and in the few LPKit sources that have imports from itself) to @import
> > "LPKit/.......j". Now, this will still not work by building in Atlas,
> > because Atlas seems to only get directories copied to the built
> > directory if they are in the Resources folder.
>
> > So, add LPKit directory to resources, and go through all your files
> > and LPKit's files replacing @import <LPKit/etc.j> with @import
> > "Resources/LPKit/etc.j"
>
> > NowBuildand Run should work.
>
> > On Jan 17, 5:03 pm, Dunkie <blairdun...@sympatico.ca> wrote:
>
> > > Hmmm, I suspect I'm still missing something.
>
> > > I downloaded your zipped file.
> > > Clicked on the index.html file - nothing loads due to missing
> > > frameworks.
> > > In the Foundation folder, replaced your aliases of AppKit, Foundation,
> > > Objective-J with my latest copies from Atlas.
> > > Clicked on the index.html file.
> > > Sample loads and works. (fonts display as a serif font, not like your
> > > online example).
>
> > > Now for Atlas I opened the project file.
> > > ClickedBuildand Run.
>
> > > Atlas displays a vague dialog message:
> > > "An error occured while building
>
> > > No such file or directory."
>
> > > On Jan 17, 4:27 pm,luddep<lud...@gmail.com> wrote:
>
> > > > Here is an example app that runs LPKit alongside atlas:
>
> > > >http://cloud.github.com/downloads/luddep/LPKit-Examples/LPKit-Atlas.zip
>
> > > > It's using a built version of LPKit as well as symlinked (capp gen -l -
> > > > f --force) frameworks, which in turn is built from the latest jake
> > > > branch.
>
> > > > Hope this helps,
> > > > Ludwig
>
> > > > On Nov 21 2009, 6:17 pm, Dunkie <blairdun...@sympatico.ca> wrote:
>
> > > > > That seems to have done it, thanks.
>
> > > > > Still seems to be something missing to get it to work in Atlas as now
> > > > > the fonts on the calendar have changed to serif font which is
> > > > > different from the sample.
>
> > > > > Here is what I've done.
> > > > > Created a new cib project in Atlas.
>
> > > > > Dropped the LPAristo folder (from the new Nov 21 example on git) into
> > > > > the new projects folder.
> > > > > Dropped the LPKit folder (from the Nov 7 version on git) into the new
> > > > > projects Frameworks folder
> > > > > Dropped the AppController.j from the new Nov 21 example into the new
> > > > > projects folder.
> > > > > Opened the new project in Atlas.
> > > > >Buildand Run.