Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-11-02 Thread Jesse Tayler

...Thoughts on modern UI frameworks and WO/Wonder:

D2W is still one of my most favorite technology inventions ever. I fully 
believe it is the best way to capture the logical configuration of complex 
relational data and anything, but especially the web.

Getting even half-way through this modern UI framework reminds me just how 
powerful and cool D2W can be once you fully adopt the concept. I believe even 
the creators of D2W misunderstood how to best leverage the concept, but that's 
a conversation reserved for drinks!

“NOWOWODC”?? NYC?? anyone?? 

I love the amazing ability to adopt modern css class structures and produce a 
fully adaptive and gorgeously uniform presentation. It is just something that 
warms my software heart.

That being said, I can see a few reasons why it's hard for WO/Wonder to move 
into a more modern environment and I'm sure many of you are already fully aware 
of what I've only just recently educated myself on.

Modern-Look takes advantage of amazing AJAX stuff that leverages WOs DOM 
component naming systems to magically replace parts of the page's DOM — this 
AJAX stuff gets used in tabs and paging lists and all kinds of things. It's 
built-in via D2W rules like magic.

Ajax.framework and it's wonder.js is intimately bound to prototype.js and 
prototype has fundamental bugs and issues working with the now, vastly more 
prolific jQuery and thus, all the modern systems build upon jQuery including 
the Bootstrap and Shards being used in the UltraModern framework and demo have 
some nits and bugs.

I had to work around a very difficult bug, and it is clear that my fix is not 
universally applicable.

You can see the hack in the page wrapper of the Movies demo app.

BootstrapModernLook could replace the underlying ERMod frameworks, it nearly 
does that right now - but the Ajax stuff would be an order of magnitude more 
difficult and thus we'd have to choose between living with the legacy or 
needing to replace a pretty big loaf of cheese there in Ajax.framework.

Comments, thoughts or suggestions?














This framework will transform you from ugly, to irresistible—

https://youtu.be/4H1Lc_JHF7I?t=97



Git clone the framework:

https://github.com/jtayler/BootstrapModernLook

Git clone new, demo app:

https://github.com/jtayler/UltraModernMoviesDemo



 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-28 Thread Jesse Tayler
Wow — Great —

Let’s see, we should be able to have the image size dynamic a la bootstrap and 
I’ll fix up our new image component to be able to read a blog or take a url or 
whatever else we need —

I guess the first thing is to use the other migration, but I doubt I have that 
database installed?

And which was the one were using? Did we look up it’s blog handling or did we 
just have trouble with it?

And lastly — I guess you did NOT have to alter the actual  model or model 
framework which I guess is key

I have a few more components mapped out that are interesting but I’m still 
stuck making a decent modern type-ahead / AJAX to-one editor.





> On Oct 28, 2018, at 7:33 PM, Theodore Petrosky  wrote:
> 
> OK i got it to work!!
> 
> 100 : pageConfiguration = 'InspectTalent' => displayPropertyKeys = 
> ("firstName", "lastName", "moviesDirected", "photo.photo", "roles") 
> [com.webobjects.directtoweb.Assignment]
> 
> 100 : (pageConfiguration = 'InspectTalent' and propertyKey = 'photo.photo') 
> => componentName = "ERD2WDisplayImage" [com.webobjects.directtoweb.Assignment]
> 
> 100 : (pageConfiguration = 'InspectTalent' and propertyKey = 'photo.photo') 
> => imageMimeType = "image/jpeg" [com.webobjects.directtoweb.Assignment]
> 
> 100 : (pageConfiguration = 'InspectTalent' and propertyKey = 'photo.photo') 
> => imageWidth = "250" [com.webobjects.directtoweb.Assignment]
> 
> put a jpeg in the root  of your database and insert it into the database with:
> 
> update talentphoto set photo = pg_read_binary_file('IMG_0179.JPG') where 
> talent_id = 87;
> 
> 87 is Harrison Ford and is the first
> 
> update talentphoto set photo = pg_read_binary_file('IMG_0179.JPG') where 
> talent_id = 3;
> 
> 3 is  ('Macaulay', 'Culkin', 3);
> 
> at least you can display images.
> 
> 
>> On Oct 26, 2018, at 12:22 PM, Jesse Tayler  wrote:
>> 
>> No idea, but I’d guess we should be able to put blobs in the migration 
>> somehow.
>> 
>> Are you able to upload a photo to a Talent? Try that and see if it works, if 
>> you can save, then we can update the migrations I’m sure.
>> 
>> We could call images from a free photo site -- perhaps fetch the data or 
>> even use the URLs
>> 
>> https://www.stockfreeimages.com/36682352/Orange-kitten-lie-on-the-bed.html
>> 
>> Having the model and whatever outside the app is cool for showing how 
>> frameworks can be shared. (I guess the Movie Rentals app uses the same model 
>> framework) However, it is also sorta of complicated for a demo app.
>> 
>> See if you can upload a photo image somehow using another database type and 
>> we’ll see what’s reasonable to do here.
>> 
>> 
>> 
>> 
>> 
>>> On Oct 26, 2018, at 12:06 PM, Theodore Petrosky  wrote:
>>> 
>>> No, No blobs :(
>>> 
>>> I was looking to see if we could upload some blobs in a migration.
>>> 
>>> 
 On Oct 26, 2018, at 11:56 AM, Jesse Tayler  wrote:
 
 Hmm — are there blobs in it?
 
 We just want a demo environment that people can unpack and just 
 read/\write.
 
 BTW, I guess I used this database or perhaps worked on the team while it 
 was being built? I don’t know but I see the unusual name of a childhood 
 friend in the Talent and I surely put that in years ago either at my desk 
 and the file is still being used - or I guess I worked on this project 
 before the files got frozen in time.
 
 I also see a LOT of stuff from NetStruxr (a dot-bomb I once worked on) 
 —this is I guess the “ER” named things come from — a terrible app but a 
 really good team of smart D2W thinking people.
 
 When we realized we were going out of business, we started to “open 
 source” the code which was a way to pass it on to our future selves more 
 than anything!
 
 Anyway, apparently this code from NetStruxr was used to start Wonder, I’d 
 guess very early 2001 or so…
 
 
 
 
> On Oct 26, 2018, at 10:46 AM, Theodore Petrosky  wrote:
> 
> BTW, I spent about 5 minutes and shifted the db to postgresql. I know you 
> use MySQL but it should be about the same.
> 
> 
>> On Oct 26, 2018, at 8:37 AM, Jesse Tayler  wrote:
>> 
>> Ha, well, that’s a good sleuthing job there Ted
>> 
>> And that sounds about right, no blobs..sigh.
>> 
>> I would LOVE to adapt the really old, outdated file upload UI — There’s 
>> a nice looking file browser input widget we could support drag+drop or 
>> at least do some handling up the upload progress or something.
>> 
>> I’d also like to better test the new, fancy Card and Carousel objects 
>> which of course rely on a set of URLs - as you can see, I canned the 
>> image for each movie to the same URL...
>> 
>> I wonder if there is any reasonably easy way to set up and test images 
>> here?
>> 
>> Ted? Could we use a different DB?
>> 
>> Or maybe I should alter the model and hold an image URL and we can use 
>> images we 

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-28 Thread Theodore Petrosky
OK i got it to work!!

100 : pageConfiguration = 'InspectTalent' => displayPropertyKeys = 
("firstName", "lastName", "moviesDirected", "photo.photo", "roles") 
[com.webobjects.directtoweb.Assignment]

100 : (pageConfiguration = 'InspectTalent' and propertyKey = 'photo.photo') => 
componentName = "ERD2WDisplayImage" [com.webobjects.directtoweb.Assignment]

100 : (pageConfiguration = 'InspectTalent' and propertyKey = 'photo.photo') => 
imageMimeType = "image/jpeg" [com.webobjects.directtoweb.Assignment]

100 : (pageConfiguration = 'InspectTalent' and propertyKey = 'photo.photo') => 
imageWidth = "250" [com.webobjects.directtoweb.Assignment]

put a jpeg in the root  of your database and insert it into the database with:

update talentphoto set photo = pg_read_binary_file('IMG_0179.JPG') where 
talent_id = 87;

87 is Harrison Ford and is the first

update talentphoto set photo = pg_read_binary_file('IMG_0179.JPG') where 
talent_id = 3;

3 is  ('Macaulay', 'Culkin', 3);

at least you can display images.


> On Oct 26, 2018, at 12:22 PM, Jesse Tayler  wrote:
> 
> No idea, but I’d guess we should be able to put blobs in the migration 
> somehow.
> 
> Are you able to upload a photo to a Talent? Try that and see if it works, if 
> you can save, then we can update the migrations I’m sure.
> 
> We could call images from a free photo site -- perhaps fetch the data or even 
> use the URLs
> 
> https://www.stockfreeimages.com/36682352/Orange-kitten-lie-on-the-bed.html
> 
> Having the model and whatever outside the app is cool for showing how 
> frameworks can be shared. (I guess the Movie Rentals app uses the same model 
> framework) However, it is also sorta of complicated for a demo app.
> 
> See if you can upload a photo image somehow using another database type and 
> we’ll see what’s reasonable to do here.
> 
> 
> 
> 
> 
>> On Oct 26, 2018, at 12:06 PM, Theodore Petrosky  wrote:
>> 
>> No, No blobs :(
>> 
>> I was looking to see if we could upload some blobs in a migration.
>> 
>> 
>>> On Oct 26, 2018, at 11:56 AM, Jesse Tayler  wrote:
>>> 
>>> Hmm — are there blobs in it?
>>> 
>>> We just want a demo environment that people can unpack and just read/\write.
>>> 
>>> BTW, I guess I used this database or perhaps worked on the team while it 
>>> was being built? I don’t know but I see the unusual name of a childhood 
>>> friend in the Talent and I surely put that in years ago either at my desk 
>>> and the file is still being used - or I guess I worked on this project 
>>> before the files got frozen in time.
>>> 
>>> I also see a LOT of stuff from NetStruxr (a dot-bomb I once worked on) 
>>> —this is I guess the “ER” named things come from — a terrible app but a 
>>> really good team of smart D2W thinking people.
>>> 
>>> When we realized we were going out of business, we started to “open source” 
>>> the code which was a way to pass it on to our future selves more than 
>>> anything!
>>> 
>>> Anyway, apparently this code from NetStruxr was used to start Wonder, I’d 
>>> guess very early 2001 or so…
>>> 
>>> 
>>> 
>>> 
 On Oct 26, 2018, at 10:46 AM, Theodore Petrosky  wrote:
 
 BTW, I spent about 5 minutes and shifted the db to postgresql. I know you 
 use MySQL but it should be about the same.
 
 
> On Oct 26, 2018, at 8:37 AM, Jesse Tayler  wrote:
> 
> Ha, well, that’s a good sleuthing job there Ted
> 
> And that sounds about right, no blobs..sigh.
> 
> I would LOVE to adapt the really old, outdated file upload UI — There’s a 
> nice looking file browser input widget we could support drag+drop or at 
> least do some handling up the upload progress or something.
> 
> I’d also like to better test the new, fancy Card and Carousel objects 
> which of course rely on a set of URLs - as you can see, I canned the 
> image for each movie to the same URL...
> 
> I wonder if there is any reasonably easy way to set up and test images 
> here?
> 
> Ted? Could we use a different DB?
> 
> Or maybe I should alter the model and hold an image URL and we can use 
> images we find around for testing…
> 
> In my apps, I upload photos that get put in S3 buckets and scripts make 
> thumbnails and finally, I generate URLs based on the key ID and bucket 
> path but this takes like 20 steps to set up!
> 
> Thoughts on how a modern app can test file uploads and photos?
> 
> 
> 
> 
> 
>> On Oct 26, 2018, at 8:29 AM, Theodore Petrosky  wrote:
>> 
>> If I read this correctly, it is using the H2 in memory database. the 
>> model is set up to have an entity TalentPhoto. The entity is set up to 
>> have a blob. However in the sql  that is run when the app first starts, 
>> there is a section that sets up the TalenPhoto. I see a lot of these:
>> 
>> INSERT INTO talentphoto VALUES (NULL,551);
>> 
>> that NULL is the blob! I don’t know how you would get any 

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-28 Thread Jesse Tayler
Well, that sounds damn close to me — I can try my hand at it too.



> On Oct 28, 2018, at 6:56 PM, Theodore Petrosky  wrote:
> 
> ok so we just need to figure out a little more!!
> 
> this is a postgresql backend. we know that photo of talentphoto is a blob of 
> type bytea.
> 
> insert into talentphoto(talent_id, photo) values (3, 
> pg_read_binary_file('IMG_0179.JPG'));
> 
> pg_read_binary_file will read a binary file that lives in the root of the 
> server. you can not give it a path. there must be a proc of postgresql that 
> accepts a full path but that is not the issue. that sql will load the file 
> into the database!
> 
> so for the test, I can upload a jpg into the backend. I cannot get it to 
> display.
> 
> talk tomorrow.
> 
> 
>> On Oct 26, 2018, at 12:22 PM, Jesse Tayler  wrote:
>> 
>> No idea, but I’d guess we should be able to put blobs in the migration 
>> somehow.
>> 
>> Are you able to upload a photo to a Talent? Try that and see if it works, if 
>> you can save, then we can update the migrations I’m sure.
>> 
>> We could call images from a free photo site -- perhaps fetch the data or 
>> even use the URLs
>> 
>> https://www.stockfreeimages.com/36682352/Orange-kitten-lie-on-the-bed.html
>> 
>> Having the model and whatever outside the app is cool for showing how 
>> frameworks can be shared. (I guess the Movie Rentals app uses the same model 
>> framework) However, it is also sorta of complicated for a demo app.
>> 
>> See if you can upload a photo image somehow using another database type and 
>> we’ll see what’s reasonable to do here.
>> 
>> 
>> 
>> 
>> 
>>> On Oct 26, 2018, at 12:06 PM, Theodore Petrosky  wrote:
>>> 
>>> No, No blobs :(
>>> 
>>> I was looking to see if we could upload some blobs in a migration.
>>> 
>>> 
 On Oct 26, 2018, at 11:56 AM, Jesse Tayler  wrote:
 
 Hmm — are there blobs in it?
 
 We just want a demo environment that people can unpack and just 
 read/\write.
 
 BTW, I guess I used this database or perhaps worked on the team while it 
 was being built? I don’t know but I see the unusual name of a childhood 
 friend in the Talent and I surely put that in years ago either at my desk 
 and the file is still being used - or I guess I worked on this project 
 before the files got frozen in time.
 
 I also see a LOT of stuff from NetStruxr (a dot-bomb I once worked on) 
 —this is I guess the “ER” named things come from — a terrible app but a 
 really good team of smart D2W thinking people.
 
 When we realized we were going out of business, we started to “open 
 source” the code which was a way to pass it on to our future selves more 
 than anything!
 
 Anyway, apparently this code from NetStruxr was used to start Wonder, I’d 
 guess very early 2001 or so…
 
 
 
 
> On Oct 26, 2018, at 10:46 AM, Theodore Petrosky  wrote:
> 
> BTW, I spent about 5 minutes and shifted the db to postgresql. I know you 
> use MySQL but it should be about the same.
> 
> 
>> On Oct 26, 2018, at 8:37 AM, Jesse Tayler  wrote:
>> 
>> Ha, well, that’s a good sleuthing job there Ted
>> 
>> And that sounds about right, no blobs..sigh.
>> 
>> I would LOVE to adapt the really old, outdated file upload UI — There’s 
>> a nice looking file browser input widget we could support drag+drop or 
>> at least do some handling up the upload progress or something.
>> 
>> I’d also like to better test the new, fancy Card and Carousel objects 
>> which of course rely on a set of URLs - as you can see, I canned the 
>> image for each movie to the same URL...
>> 
>> I wonder if there is any reasonably easy way to set up and test images 
>> here?
>> 
>> Ted? Could we use a different DB?
>> 
>> Or maybe I should alter the model and hold an image URL and we can use 
>> images we find around for testing…
>> 
>> In my apps, I upload photos that get put in S3 buckets and scripts make 
>> thumbnails and finally, I generate URLs based on the key ID and bucket 
>> path but this takes like 20 steps to set up!
>> 
>> Thoughts on how a modern app can test file uploads and photos?
>> 
>> 
>> 
>> 
>> 
>>> On Oct 26, 2018, at 8:29 AM, Theodore Petrosky  
>>> wrote:
>>> 
>>> If I read this correctly, it is using the H2 in memory database. the 
>>> model is set up to have an entity TalentPhoto. The entity is set up to 
>>> have a blob. However in the sql  that is run when the app first starts, 
>>> there is a section that sets up the TalenPhoto. I see a lot of these:
>>> 
>>> INSERT INTO talentphoto VALUES (NULL,551);
>>> 
>>> that NULL is the blob! I don’t know how you would get any blobs into 
>>> this database.
>>> 
>>> http://www.h2database.com/html/main.html
>>> 
>>> 
 On Oct 26, 2018, at 7:04 AM, 

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-28 Thread Theodore Petrosky
ok so we just need to figure out a little more!!

this is a postgresql backend. we know that photo of talentphoto is a blob of 
type bytea.

insert into talentphoto(talent_id, photo) values (3, 
pg_read_binary_file('IMG_0179.JPG'));

pg_read_binary_file will read a binary file that lives in the root of the 
server. you can not give it a path. there must be a proc of postgresql that 
accepts a full path but that is not the issue. that sql will load the file into 
the database!

so for the test, I can upload a jpg into the backend. I cannot get it to 
display.

talk tomorrow.


> On Oct 26, 2018, at 12:22 PM, Jesse Tayler  wrote:
> 
> No idea, but I’d guess we should be able to put blobs in the migration 
> somehow.
> 
> Are you able to upload a photo to a Talent? Try that and see if it works, if 
> you can save, then we can update the migrations I’m sure.
> 
> We could call images from a free photo site -- perhaps fetch the data or even 
> use the URLs
> 
> https://www.stockfreeimages.com/36682352/Orange-kitten-lie-on-the-bed.html
> 
> Having the model and whatever outside the app is cool for showing how 
> frameworks can be shared. (I guess the Movie Rentals app uses the same model 
> framework) However, it is also sorta of complicated for a demo app.
> 
> See if you can upload a photo image somehow using another database type and 
> we’ll see what’s reasonable to do here.
> 
> 
> 
> 
> 
>> On Oct 26, 2018, at 12:06 PM, Theodore Petrosky  wrote:
>> 
>> No, No blobs :(
>> 
>> I was looking to see if we could upload some blobs in a migration.
>> 
>> 
>>> On Oct 26, 2018, at 11:56 AM, Jesse Tayler  wrote:
>>> 
>>> Hmm — are there blobs in it?
>>> 
>>> We just want a demo environment that people can unpack and just read/\write.
>>> 
>>> BTW, I guess I used this database or perhaps worked on the team while it 
>>> was being built? I don’t know but I see the unusual name of a childhood 
>>> friend in the Talent and I surely put that in years ago either at my desk 
>>> and the file is still being used - or I guess I worked on this project 
>>> before the files got frozen in time.
>>> 
>>> I also see a LOT of stuff from NetStruxr (a dot-bomb I once worked on) 
>>> —this is I guess the “ER” named things come from — a terrible app but a 
>>> really good team of smart D2W thinking people.
>>> 
>>> When we realized we were going out of business, we started to “open source” 
>>> the code which was a way to pass it on to our future selves more than 
>>> anything!
>>> 
>>> Anyway, apparently this code from NetStruxr was used to start Wonder, I’d 
>>> guess very early 2001 or so…
>>> 
>>> 
>>> 
>>> 
 On Oct 26, 2018, at 10:46 AM, Theodore Petrosky  wrote:
 
 BTW, I spent about 5 minutes and shifted the db to postgresql. I know you 
 use MySQL but it should be about the same.
 
 
> On Oct 26, 2018, at 8:37 AM, Jesse Tayler  wrote:
> 
> Ha, well, that’s a good sleuthing job there Ted
> 
> And that sounds about right, no blobs..sigh.
> 
> I would LOVE to adapt the really old, outdated file upload UI — There’s a 
> nice looking file browser input widget we could support drag+drop or at 
> least do some handling up the upload progress or something.
> 
> I’d also like to better test the new, fancy Card and Carousel objects 
> which of course rely on a set of URLs - as you can see, I canned the 
> image for each movie to the same URL...
> 
> I wonder if there is any reasonably easy way to set up and test images 
> here?
> 
> Ted? Could we use a different DB?
> 
> Or maybe I should alter the model and hold an image URL and we can use 
> images we find around for testing…
> 
> In my apps, I upload photos that get put in S3 buckets and scripts make 
> thumbnails and finally, I generate URLs based on the key ID and bucket 
> path but this takes like 20 steps to set up!
> 
> Thoughts on how a modern app can test file uploads and photos?
> 
> 
> 
> 
> 
>> On Oct 26, 2018, at 8:29 AM, Theodore Petrosky  wrote:
>> 
>> If I read this correctly, it is using the H2 in memory database. the 
>> model is set up to have an entity TalentPhoto. The entity is set up to 
>> have a blob. However in the sql  that is run when the app first starts, 
>> there is a section that sets up the TalenPhoto. I see a lot of these:
>> 
>> INSERT INTO talentphoto VALUES (NULL,551);
>> 
>> that NULL is the blob! I don’t know how you would get any blobs into 
>> this database.
>> 
>> http://www.h2database.com/html/main.html
>> 
>> 
>>> On Oct 26, 2018, at 7:04 AM, Jesse Tayler  wrote:
>>> 
>>> Ok Great!
>>> 
>>> As for the DB? I’m a bit confused myself -
>>> 
>>> There’s a database running for me, I think the model is in a framework 
>>> called ERMoviesLogic and yet another model is in another framework
>>> 
>>> I 

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-26 Thread Jesse Tayler
No idea, but I’d guess we should be able to put blobs in the migration somehow.

Are you able to upload a photo to a Talent? Try that and see if it works, if 
you can save, then we can update the migrations I’m sure.

We could call images from a free photo site -- perhaps fetch the data or even 
use the URLs

https://www.stockfreeimages.com/36682352/Orange-kitten-lie-on-the-bed.html

Having the model and whatever outside the app is cool for showing how 
frameworks can be shared. (I guess the Movie Rentals app uses the same model 
framework) However, it is also sorta of complicated for a demo app.

See if you can upload a photo image somehow using another database type and 
we’ll see what’s reasonable to do here.





> On Oct 26, 2018, at 12:06 PM, Theodore Petrosky  wrote:
> 
> No, No blobs :(
> 
> I was looking to see if we could upload some blobs in a migration.
> 
> 
>> On Oct 26, 2018, at 11:56 AM, Jesse Tayler  wrote:
>> 
>> Hmm — are there blobs in it?
>> 
>> We just want a demo environment that people can unpack and just read/\write.
>> 
>> BTW, I guess I used this database or perhaps worked on the team while it was 
>> being built? I don’t know but I see the unusual name of a childhood friend 
>> in the Talent and I surely put that in years ago either at my desk and the 
>> file is still being used - or I guess I worked on this project before the 
>> files got frozen in time.
>> 
>> I also see a LOT of stuff from NetStruxr (a dot-bomb I once worked on) —this 
>> is I guess the “ER” named things come from — a terrible app but a really 
>> good team of smart D2W thinking people.
>> 
>> When we realized we were going out of business, we started to “open source” 
>> the code which was a way to pass it on to our future selves more than 
>> anything!
>> 
>> Anyway, apparently this code from NetStruxr was used to start Wonder, I’d 
>> guess very early 2001 or so…
>> 
>> 
>> 
>> 
>>> On Oct 26, 2018, at 10:46 AM, Theodore Petrosky  wrote:
>>> 
>>> BTW, I spent about 5 minutes and shifted the db to postgresql. I know you 
>>> use MySQL but it should be about the same.
>>> 
>>> 
 On Oct 26, 2018, at 8:37 AM, Jesse Tayler  wrote:
 
 Ha, well, that’s a good sleuthing job there Ted
 
 And that sounds about right, no blobs..sigh.
 
 I would LOVE to adapt the really old, outdated file upload UI — There’s a 
 nice looking file browser input widget we could support drag+drop or at 
 least do some handling up the upload progress or something.
 
 I’d also like to better test the new, fancy Card and Carousel objects 
 which of course rely on a set of URLs - as you can see, I canned the image 
 for each movie to the same URL...
 
 I wonder if there is any reasonably easy way to set up and test images 
 here?
 
 Ted? Could we use a different DB?
 
 Or maybe I should alter the model and hold an image URL and we can use 
 images we find around for testing…
 
 In my apps, I upload photos that get put in S3 buckets and scripts make 
 thumbnails and finally, I generate URLs based on the key ID and bucket 
 path but this takes like 20 steps to set up!
 
 Thoughts on how a modern app can test file uploads and photos?
 
 
 
 
 
> On Oct 26, 2018, at 8:29 AM, Theodore Petrosky  wrote:
> 
> If I read this correctly, it is using the H2 in memory database. the 
> model is set up to have an entity TalentPhoto. The entity is set up to 
> have a blob. However in the sql  that is run when the app first starts, 
> there is a section that sets up the TalenPhoto. I see a lot of these:
> 
> INSERT INTO talentphoto VALUES (NULL,551);
> 
> that NULL is the blob! I don’t know how you would get any blobs into this 
> database.
> 
> http://www.h2database.com/html/main.html
> 
> 
>> On Oct 26, 2018, at 7:04 AM, Jesse Tayler  wrote:
>> 
>> Ok Great!
>> 
>> As for the DB? I’m a bit confused myself -
>> 
>> There’s a database running for me, I think the model is in a framework 
>> called ERMoviesLogic and yet another model is in another framework
>> 
>> I have trouble accessing photos, often one side of the database is down 
>> and I never seem to be able to access the blob data?
>> 
>> If anyone knows exactly how this database is working, please let us know!
>> 
>> 
>> 
>>> On Oct 25, 2018, at 7:24 PM, Francois BIENTZ  
>>> wrote:
>>> 
>>> Thanks a lot , things are working better : the App can be run now , 
>>> except the database connection for me ...
>>> Do you use  the Derby database from the original example ? 
>>> where is the "substitute" EOmodel for D2w hidden ?
>>> 
 Le 25 oct. 2018 à 20:38, Jesse Tayler  a écrit :
 
 Beat me to the punch, I’ll go merge that now —
 
> On Oct 25, 2018, at 2:34 PM, Tim Worman  

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-26 Thread Jesse Tayler
Hmm — are there blobs in it?

We just want a demo environment that people can unpack and just read/\write.

BTW, I guess I used this database or perhaps worked on the team while it was 
being built? I don’t know but I see the unusual name of a childhood friend in 
the Talent and I surely put that in years ago either at my desk and the file is 
still being used - or I guess I worked on this project before the files got 
frozen in time.

I also see a LOT of stuff from NetStruxr (a dot-bomb I once worked on) —this is 
I guess the “ER” named things come from — a terrible app but a really good team 
of smart D2W thinking people.

When we realized we were going out of business, we started to “open source” the 
code which was a way to pass it on to our future selves more than anything!

Anyway, apparently this code from NetStruxr was used to start Wonder, I’d guess 
very early 2001 or so…




> On Oct 26, 2018, at 10:46 AM, Theodore Petrosky  wrote:
> 
> BTW, I spent about 5 minutes and shifted the db to postgresql. I know you use 
> MySQL but it should be about the same.
> 
> 
>> On Oct 26, 2018, at 8:37 AM, Jesse Tayler  wrote:
>> 
>> Ha, well, that’s a good sleuthing job there Ted
>> 
>> And that sounds about right, no blobs..sigh.
>> 
>> I would LOVE to adapt the really old, outdated file upload UI — There’s a 
>> nice looking file browser input widget we could support drag+drop or at 
>> least do some handling up the upload progress or something.
>> 
>> I’d also like to better test the new, fancy Card and Carousel objects which 
>> of course rely on a set of URLs - as you can see, I canned the image for 
>> each movie to the same URL...
>> 
>> I wonder if there is any reasonably easy way to set up and test images here?
>> 
>> Ted? Could we use a different DB?
>> 
>> Or maybe I should alter the model and hold an image URL and we can use 
>> images we find around for testing…
>> 
>> In my apps, I upload photos that get put in S3 buckets and scripts make 
>> thumbnails and finally, I generate URLs based on the key ID and bucket path 
>> but this takes like 20 steps to set up!
>> 
>> Thoughts on how a modern app can test file uploads and photos?
>> 
>> 
>> 
>> 
>> 
>>> On Oct 26, 2018, at 8:29 AM, Theodore Petrosky  wrote:
>>> 
>>> If I read this correctly, it is using the H2 in memory database. the model 
>>> is set up to have an entity TalentPhoto. The entity is set up to have a 
>>> blob. However in the sql  that is run when the app first starts, there is a 
>>> section that sets up the TalenPhoto. I see a lot of these:
>>> 
>>> INSERT INTO talentphoto VALUES (NULL,551);
>>> 
>>> that NULL is the blob! I don’t know how you would get any blobs into this 
>>> database.
>>> 
>>> http://www.h2database.com/html/main.html
>>> 
>>> 
 On Oct 26, 2018, at 7:04 AM, Jesse Tayler  wrote:
 
 Ok Great!
 
 As for the DB? I’m a bit confused myself -
 
 There’s a database running for me, I think the model is in a framework 
 called ERMoviesLogic and yet another model is in another framework
 
 I have trouble accessing photos, often one side of the database is down 
 and I never seem to be able to access the blob data?
 
 If anyone knows exactly how this database is working, please let us know!
 
 
 
> On Oct 25, 2018, at 7:24 PM, Francois BIENTZ  wrote:
> 
> Thanks a lot , things are working better : the App can be run now , 
> except the database connection for me ...
> Do you use  the Derby database from the original   example ? where is the 
> "substitute" EOmodel for D2w hidden ?
> 
>> Le 25 oct. 2018 à 20:38, Jesse Tayler  a écrit :
>> 
>> Beat me to the punch, I’ll go merge that now —
>> 
>>> On Oct 25, 2018, at 2:34 PM, Tim Worman  wrote:
>>> 
>>> I forked the project and created a pull request that encapsulates these 
>>> changes. Hopefully that fixes the JRE issue.
>>> 
>>> Tim
>>> 
 On Oct 25, 2018, at 11:21 AM, Tim Worman  wrote:
 
 All,
 
 I just imported the framework project. I changed a couple things. 
 First, change the jdk to use “Workspace Default JRE." That may address 
 the error with the build path having a specific jdk set. Also, I think 
 the missing Libraries folder can be addressed the same way it is for 
 other Wonder frameworks - basically add an empty .gitignore inside the 
 Libraries folder.
 
 I’m getting quite a few errors in components for “In the WOD, there is 
 no key ‘ in ." Assuming these are keys that 
 will operate correctly at runtime, these should be marked with 
 ‘//VALID’ in the WOD.
 
 Tim
 UCLA GSEIS
 
> On Oct 25, 2018, at 11:14 AM, Theodore Petrosky  
> wrote:
> 
> I did not pull today :(
> 
> how does it work with Wonder? I never had to change this 

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-26 Thread Jesse Tayler
Ha, well, that’s a good sleuthing job there Ted

And that sounds about right, no blobs..sigh.

I would LOVE to adapt the really old, outdated file upload UI — There’s a nice 
looking file browser input widget we could support drag+drop or at least do 
some handling up the upload progress or something.

I’d also like to better test the new, fancy Card and Carousel objects which of 
course rely on a set of URLs - as you can see, I canned the image for each 
movie to the same URL...

I wonder if there is any reasonably easy way to set up and test images here?

Ted? Could we use a different DB?

Or maybe I should alter the model and hold an image URL and we can use images 
we find around for testing…

In my apps, I upload photos that get put in S3 buckets and scripts make 
thumbnails and finally, I generate URLs based on the key ID and bucket path but 
this takes like 20 steps to set up!

Thoughts on how a modern app can test file uploads and photos?





> On Oct 26, 2018, at 8:29 AM, Theodore Petrosky  wrote:
> 
> If I read this correctly, it is using the H2 in memory database. the model is 
> set up to have an entity TalentPhoto. The entity is set up to have a blob. 
> However in the sql  that is run when the app first starts, there is a section 
> that sets up the TalenPhoto. I see a lot of these:
> 
> INSERT INTO talentphoto VALUES (NULL,551);
> 
> that NULL is the blob! I don’t know how you would get any blobs into this 
> database.
> 
> http://www.h2database.com/html/main.html
> 
> 
>> On Oct 26, 2018, at 7:04 AM, Jesse Tayler  wrote:
>> 
>> Ok Great!
>> 
>> As for the DB? I’m a bit confused myself -
>> 
>> There’s a database running for me, I think the model is in a framework 
>> called ERMoviesLogic and yet another model is in another framework
>> 
>> I have trouble accessing photos, often one side of the database is down and 
>> I never seem to be able to access the blob data?
>> 
>> If anyone knows exactly how this database is working, please let us know!
>> 
>> 
>> 
>>> On Oct 25, 2018, at 7:24 PM, Francois BIENTZ  wrote:
>>> 
>>> Thanks a lot , things are working better : the App can be run now , except 
>>> the database connection for me ...
>>> Do you use  the Derby database from the original example ? where is the 
>>> "substitute" EOmodel for D2w hidden ?
>>> 
 Le 25 oct. 2018 à 20:38, Jesse Tayler  a écrit :
 
 Beat me to the punch, I’ll go merge that now —
 
> On Oct 25, 2018, at 2:34 PM, Tim Worman  wrote:
> 
> I forked the project and created a pull request that encapsulates these 
> changes. Hopefully that fixes the JRE issue.
> 
> Tim
> 
>> On Oct 25, 2018, at 11:21 AM, Tim Worman  wrote:
>> 
>> All,
>> 
>> I just imported the framework project. I changed a couple things. First, 
>> change the jdk to use “Workspace Default JRE." That may address the 
>> error with the build path having a specific jdk set. Also, I think the 
>> missing Libraries folder can be addressed the same way it is for other 
>> Wonder frameworks - basically add an empty .gitignore inside the 
>> Libraries folder.
>> 
>> I’m getting quite a few errors in components for “In the WOD, there is 
>> no key ‘ in ." Assuming these are keys that 
>> will operate correctly at runtime, these should be marked with ‘//VALID’ 
>> in the WOD.
>> 
>> Tim
>> UCLA GSEIS
>> 
>>> On Oct 25, 2018, at 11:14 AM, Theodore Petrosky  
>>> wrote:
>>> 
>>> I did not pull today :(
>>> 
>>> how does it work with Wonder? I never had to change this when I cloned 
>>> Wonder. It just opened using the Java that I had. Maybe I was just 
>>> lucky.
>>> 
>>> I will pull in a little while.
>>> 
>>> Ted
>>> 
>>> 
 On Oct 25, 2018, at 2:07 PM, Jesse Tayler  wrote:
 
 Should we change that setting?
 
 Ted? You used Ant to build the framework and then just right-click on 
 application class to use Run As WoApplication, right?
 
 Did you pull whatever is there today and all that?
 
 
 
> On Oct 24, 2018, at 8:31 PM, Theodore Petrosky  
> wrote:
> 
> when i opened your project, the java was listed as jdk_1.7  I did not 
> have that jdk so I had to link in what I have  jdk 1.8.0_144
> 
> 
>> On Oct 24, 2018, at 7:59 PM, Jesse Tayler  wrote:
>> 
>> I’m cc’ing Robert here who’s great with configuration, I run the app 
>> using the right click wonder app options not the build file myself
>> 
>> My build.xml for the app looks normal and ends with
>> 
>> 
>> 
>> 
>> The build.xml for the frameworks looks normal and far more complex 
>> and begins with
>> 
>> 
>> 
>> 
>> I do see that perhaps because I have 

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-26 Thread Jesse Tayler
Ok Great!

As for the DB? I’m a bit confused myself -

There’s a database running for me, I think the model is in a framework called 
ERMoviesLogic and yet another model is in another framework

I have trouble accessing photos, often one side of the database is down and I 
never seem to be able to access the blob data?

If anyone knows exactly how this database is working, please let us know!



> On Oct 25, 2018, at 7:24 PM, Francois BIENTZ  wrote:
> 
> Thanks a lot , things are working better : the App can be run now , except 
> the database connection for me ...
> Do you use  the Derby database from the original   example ? where is the 
> "substitute" EOmodel for D2w hidden ?
> 
>> Le 25 oct. 2018 à 20:38, Jesse Tayler  a écrit :
>> 
>> Beat me to the punch, I’ll go merge that now —
>> 
>>> On Oct 25, 2018, at 2:34 PM, Tim Worman  wrote:
>>> 
>>> I forked the project and created a pull request that encapsulates these 
>>> changes. Hopefully that fixes the JRE issue.
>>> 
>>> Tim
>>> 
 On Oct 25, 2018, at 11:21 AM, Tim Worman  wrote:
 
 All,
 
 I just imported the framework project. I changed a couple things. First, 
 change the jdk to use “Workspace Default JRE." That may address the error 
 with the build path having a specific jdk set. Also, I think the missing 
 Libraries folder can be addressed the same way it is for other Wonder 
 frameworks - basically add an empty .gitignore inside the Libraries folder.
 
 I’m getting quite a few errors in components for “In the WOD, there is no 
 key ‘ in ." Assuming these are keys that will 
 operate correctly at runtime, these should be marked with ‘//VALID’ in the 
 WOD.
 
 Tim
 UCLA GSEIS
 
> On Oct 25, 2018, at 11:14 AM, Theodore Petrosky  wrote:
> 
> I did not pull today :(
> 
> how does it work with Wonder? I never had to change this when I cloned 
> Wonder. It just opened using the Java that I had. Maybe I was just lucky.
> 
> I will pull in a little while.
> 
> Ted
> 
> 
>> On Oct 25, 2018, at 2:07 PM, Jesse Tayler  wrote:
>> 
>> Should we change that setting?
>> 
>> Ted? You used Ant to build the framework and then just right-click on 
>> application class to use Run As WoApplication, right?
>> 
>> Did you pull whatever is there today and all that?
>> 
>> 
>> 
>>> On Oct 24, 2018, at 8:31 PM, Theodore Petrosky  
>>> wrote:
>>> 
>>> when i opened your project, the java was listed as jdk_1.7  I did not 
>>> have that jdk so I had to link in what I have  jdk 1.8.0_144
>>> 
>>> 
 On Oct 24, 2018, at 7:59 PM, Jesse Tayler  wrote:
 
 I’m cc’ing Robert here who’s great with configuration, I run the app 
 using the right click wonder app options not the build file myself
 
 My build.xml for the app looks normal and ends with
 
 
 
 
 The build.xml for the frameworks looks normal and far more complex and 
 begins with
 
 
 
 
 I do see that perhaps because I have peculiar JAVA settings that there 
 may be JAVA issues, and come to think of it, criss-crossed JAVA 
 versions can cause normal classes like the Application class not to 
 build…
 
 I bet you might see detail in your backtrace about classes loading. 
 I’m going to say this is something to do with your build-settings and 
 specifically the JAVA version numbers being used
 
 Seems to me the framework might be 1.7 and my app is perhaps 1.8 or 
 SE7 and SE8
 
 I could have checked in a mismatch that perhaps needs adjusting? 
 Robert? 
 
 
 
> On Oct 24, 2018, at 7:43 PM, Francois BIENTZ  
> wrote:
> 
> Yes I’m able to run other Wonder Apps
> 
> For the BootstrapModernLook Framework it works now (ant needs a 
> Library in folder in the Eclipse project )  I right clicked on 
> build.xml  — WOLips ant tools — install
> What did you put in this Library directory ? 
> 
> Then for the App I tried to use ant too (right click on build.xml), 
> but I obtain : Build failed : Error reading project file 
> /Users/franc/Build/build/build.xml: /Users/franc/Build/build/build.xml
> such directory don’t exist on my home. (but the build.xml of the App 
> don’t look like the xml file in other  Wonder Apps projects )
> 
> I have to search more what can be wrong on my environment 
> 
> Thank you Jesse 
> 
>> Le 24 oct. 2018 à 23:46, Jesse Tayler  a écrit :
>> 
>> I’m not certain why you’d get that —
>> 
>> Let’s see, sounds like perhaps it hasn’t got ERXApplication or there 

Re: Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Francois BIENTZ
Thanks a lot , things are working better : the App can be run now , except the 
database connection for me ...
Do you use  the Derby database from the original example ? where is the 
"substitute" EOmodel for D2w hidden ?

> Le 25 oct. 2018 à 20:38, Jesse Tayler  a écrit :
> 
> Beat me to the punch, I’ll go merge that now —
> 
>> On Oct 25, 2018, at 2:34 PM, Tim Worman  wrote:
>> 
>> I forked the project and created a pull request that encapsulates these 
>> changes. Hopefully that fixes the JRE issue.
>> 
>> Tim
>> 
>>> On Oct 25, 2018, at 11:21 AM, Tim Worman  wrote:
>>> 
>>> All,
>>> 
>>> I just imported the framework project. I changed a couple things. First, 
>>> change the jdk to use “Workspace Default JRE." That may address the error 
>>> with the build path having a specific jdk set. Also, I think the missing 
>>> Libraries folder can be addressed the same way it is for other Wonder 
>>> frameworks - basically add an empty .gitignore inside the Libraries folder.
>>> 
>>> I’m getting quite a few errors in components for “In the WOD, there is no 
>>> key ‘ in ." Assuming these are keys that will 
>>> operate correctly at runtime, these should be marked with ‘//VALID’ in the 
>>> WOD.
>>> 
>>> Tim
>>> UCLA GSEIS
>>> 
 On Oct 25, 2018, at 11:14 AM, Theodore Petrosky  wrote:
 
 I did not pull today :(
 
 how does it work with Wonder? I never had to change this when I cloned 
 Wonder. It just opened using the Java that I had. Maybe I was just lucky.
 
 I will pull in a little while.
 
 Ted
 
 
> On Oct 25, 2018, at 2:07 PM, Jesse Tayler  wrote:
> 
> Should we change that setting?
> 
> Ted? You used Ant to build the framework and then just right-click on 
> application class to use Run As WoApplication, right?
> 
> Did you pull whatever is there today and all that?
> 
> 
> 
>> On Oct 24, 2018, at 8:31 PM, Theodore Petrosky  wrote:
>> 
>> when i opened your project, the java was listed as jdk_1.7  I did not 
>> have that jdk so I had to link in what I have  jdk 1.8.0_144
>> 
>> 
>>> On Oct 24, 2018, at 7:59 PM, Jesse Tayler  wrote:
>>> 
>>> I’m cc’ing Robert here who’s great with configuration, I run the app 
>>> using the right click wonder app options not the build file myself
>>> 
>>> My build.xml for the app looks normal and ends with
>>> 
>>>  
>>> 
>>> 
>>> The build.xml for the frameworks looks normal and far more complex and 
>>> begins with
>>> 
>>> 
>>> 
>>> 
>>> I do see that perhaps because I have peculiar JAVA settings that there 
>>> may be JAVA issues, and come to think of it, criss-crossed JAVA 
>>> versions can cause normal classes like the Application class not to 
>>> build…
>>> 
>>> I bet you might see detail in your backtrace about classes loading. I’m 
>>> going to say this is something to do with your build-settings and 
>>> specifically the JAVA version numbers being used
>>> 
>>> Seems to me the framework might be 1.7 and my app is perhaps 1.8 or SE7 
>>> and SE8
>>> 
>>> I could have checked in a mismatch that perhaps needs adjusting? 
>>> Robert? 
>>> 
>>> 
>>> 
 On Oct 24, 2018, at 7:43 PM, Francois BIENTZ  
 wrote:
 
 Yes I’m able to run other Wonder Apps
 
 For the BootstrapModernLook Framework it works now (ant needs a 
 Library in folder in the Eclipse project )  I right clicked on 
 build.xml  — WOLips ant tools — install
 What did you put in this Library directory ? 
 
 Then for the App I tried to use ant too (right click on build.xml), 
 but I obtain : Build failed : Error reading project file 
 /Users/franc/Build/build/build.xml: /Users/franc/Build/build/build.xml
 such directory don’t exist on my home. (but the build.xml of the App 
 don’t look like the xml file in other  Wonder Apps projects )
 
 I have to search more what can be wrong on my environment  
 
 Thank you Jesse 
 
> Le 24 oct. 2018 à 23:46, Jesse Tayler  a écrit :
> 
> I’m not certain why you’d get that —
> 
> Let’s see, sounds like perhaps it hasn’t got ERXApplication or there 
> is some class path trouble.
> 
> I presume you are able to run other Wonder stuff ok?
> 
> I right-click on ant build.xml and select Run to install the framework
> 
> Then I do the same with the Application class of the app and either 
> run or debug as WOApplication which sounds like what you are doing.
> 
> I just checked in whatever I might have to be sure I have left the 
> build ok, it seems ok from here.
> 
> You might just pull and make clean / install or check that 

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Jesse Tayler
Beat me to the punch, I’ll go merge that now —

> On Oct 25, 2018, at 2:34 PM, Tim Worman  wrote:
> 
> I forked the project and created a pull request that encapsulates these 
> changes. Hopefully that fixes the JRE issue.
> 
> Tim
> 
>> On Oct 25, 2018, at 11:21 AM, Tim Worman  wrote:
>> 
>> All,
>> 
>> I just imported the framework project. I changed a couple things. First, 
>> change the jdk to use “Workspace Default JRE." That may address the error 
>> with the build path having a specific jdk set. Also, I think the missing 
>> Libraries folder can be addressed the same way it is for other Wonder 
>> frameworks - basically add an empty .gitignore inside the Libraries folder.
>> 
>> I’m getting quite a few errors in components for “In the WOD, there is no 
>> key ‘ in ." Assuming these are keys that will 
>> operate correctly at runtime, these should be marked with ‘//VALID’ in the 
>> WOD.
>> 
>> Tim
>> UCLA GSEIS
>> 
>>> On Oct 25, 2018, at 11:14 AM, Theodore Petrosky  wrote:
>>> 
>>> I did not pull today :(
>>> 
>>> how does it work with Wonder? I never had to change this when I cloned 
>>> Wonder. It just opened using the Java that I had. Maybe I was just lucky.
>>> 
>>> I will pull in a little while.
>>> 
>>> Ted
>>> 
>>> 
 On Oct 25, 2018, at 2:07 PM, Jesse Tayler  wrote:
 
 Should we change that setting?
 
 Ted? You used Ant to build the framework and then just right-click on 
 application class to use Run As WoApplication, right?
 
 Did you pull whatever is there today and all that?
 
 
 
> On Oct 24, 2018, at 8:31 PM, Theodore Petrosky  wrote:
> 
> when i opened your project, the java was listed as jdk_1.7  I did not 
> have that jdk so I had to link in what I have  jdk 1.8.0_144
> 
> 
>> On Oct 24, 2018, at 7:59 PM, Jesse Tayler  wrote:
>> 
>> I’m cc’ing Robert here who’s great with configuration, I run the app 
>> using the right click wonder app options not the build file myself
>> 
>> My build.xml for the app looks normal and ends with
>> 
>>   
>> 
>> 
>> The build.xml for the frameworks looks normal and far more complex and 
>> begins with
>> 
>> 
>> 
>> 
>> I do see that perhaps because I have peculiar JAVA settings that there 
>> may be JAVA issues, and come to think of it, criss-crossed JAVA versions 
>> can cause normal classes like the Application class not to build…
>> 
>> I bet you might see detail in your backtrace about classes loading. I’m 
>> going to say this is something to do with your build-settings and 
>> specifically the JAVA version numbers being used
>> 
>> Seems to me the framework might be 1.7 and my app is perhaps 1.8 or SE7 
>> and SE8
>> 
>> I could have checked in a mismatch that perhaps needs adjusting? Robert? 
>> 
>> 
>> 
>>> On Oct 24, 2018, at 7:43 PM, Francois BIENTZ  
>>> wrote:
>>> 
>>> Yes I’m able to run other Wonder Apps
>>> 
>>> For the BootstrapModernLook Framework it works now (ant needs a Library 
>>> in folder in the Eclipse project )  I right clicked on build.xml  — 
>>> WOLips ant tools — install
>>> What did you put in this Library directory ? 
>>> 
>>> Then for the App I tried to use ant too (right click on build.xml), but 
>>> I obtain : Build failed : Error reading project file 
>>> /Users/franc/Build/build/build.xml: /Users/franc/Build/build/build.xml
>>> such directory don’t exist on my home. (but the build.xml of the App 
>>> don’t look like the xml file in other  Wonder Apps projects )
>>> 
>>> I have to search more what can be wrong on my environment   
>>> 
>>> Thank you Jesse 
>>> 
 Le 24 oct. 2018 à 23:46, Jesse Tayler  a écrit :
 
 I’m not certain why you’d get that —
 
 Let’s see, sounds like perhaps it hasn’t got ERXApplication or there 
 is some class path trouble.
 
 I presume you are able to run other Wonder stuff ok?
 
 I right-click on ant build.xml and select Run to install the framework
 
 Then I do the same with the Application class of the app and either 
 run or debug as WOApplication which sounds like what you are doing.
 
 I just checked in whatever I might have to be sure I have left the 
 build ok, it seems ok from here.
 
 You might just pull and make clean / install or check that wonder 
 paths are ok in build path?
 
 I’m terrible with Eclipse!!
 
 
 
 
> On Oct 24, 2018, at 5:38 PM, Francois BIENTZ  
> wrote:
> 
>> Most of the basics are now working, but this is still early 
>> construction please let me know if you’re able to get things to 
>> build and run…it’s really helpful to get reports at 

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Jesse Tayler
Thanks Tim!

Ah, that’s great about the java version and yes, I bet that’s causing some 
troubles — can you check that in or make a pull or whatever so I can fix?

And ok, I added a Libraries folder there…just added a dummy file for now and 
we’ll ignore whatever is proper.

I think the keys are leftover while creating the components is in progress and 
you should not have trouble with them.

You should see what you remember as MoviesDemo, including a rather uniform 
layout and page system but components and pages that all respond to bootstrap 
rules and tags but I’m still working on some essential stuff yet

I notice the app has two sides? Talent has a separate model from the Photo? I 
notice photos do not load, and sometimes the database doesn’t let me connect 
which gives an error about not fetching photos…restarting seems to help.

Maybe someone knows what’s up with the data there or why I can’t seem to reach 
the photo blobs?





> On Oct 25, 2018, at 2:21 PM, Tim Worman  wrote:
> 
> All,
> 
> I just imported the framework project. I changed a couple things. First, 
> change the jdk to use “Workspace Default JRE." That may address the error 
> with the build path having a specific jdk set. Also, I think the missing 
> Libraries folder can be addressed the same way it is for other Wonder 
> frameworks - basically add an empty .gitignore inside the Libraries folder.
> 
> I’m getting quite a few errors in components for “In the WOD, there is no key 
> ‘ in ." Assuming these are keys that will operate 
> correctly at runtime, these should be marked with ‘//VALID’ in the WOD.
> 
> Tim
> UCLA GSEIS
> 
>> On Oct 25, 2018, at 11:14 AM, Theodore Petrosky  wrote:
>> 
>> I did not pull today :(
>> 
>> how does it work with Wonder? I never had to change this when I cloned 
>> Wonder. It just opened using the Java that I had. Maybe I was just lucky.
>> 
>> I will pull in a little while.
>> 
>> Ted
>> 
>> 
>>> On Oct 25, 2018, at 2:07 PM, Jesse Tayler  wrote:
>>> 
>>> Should we change that setting?
>>> 
>>> Ted? You used Ant to build the framework and then just right-click on 
>>> application class to use Run As WoApplication, right?
>>> 
>>> Did you pull whatever is there today and all that?
>>> 
>>> 
>>> 
 On Oct 24, 2018, at 8:31 PM, Theodore Petrosky  wrote:
 
 when i opened your project, the java was listed as jdk_1.7  I did not have 
 that jdk so I had to link in what I have  jdk 1.8.0_144
 
 
> On Oct 24, 2018, at 7:59 PM, Jesse Tayler  wrote:
> 
> I’m cc’ing Robert here who’s great with configuration, I run the app 
> using the right click wonder app options not the build file myself
> 
> My build.xml for the app looks normal and ends with
> 
>
> 
> 
> The build.xml for the frameworks looks normal and far more complex and 
> begins with
> 
> 
> 
> 
> I do see that perhaps because I have peculiar JAVA settings that there 
> may be JAVA issues, and come to think of it, criss-crossed JAVA versions 
> can cause normal classes like the Application class not to build…
> 
> I bet you might see detail in your backtrace about classes loading. I’m 
> going to say this is something to do with your build-settings and 
> specifically the JAVA version numbers being used
> 
> Seems to me the framework might be 1.7 and my app is perhaps 1.8 or SE7 
> and SE8
> 
> I could have checked in a mismatch that perhaps needs adjusting? Robert? 
> 
> 
> 
>> On Oct 24, 2018, at 7:43 PM, Francois BIENTZ  
>> wrote:
>> 
>> Yes I’m able to run other Wonder Apps
>> 
>> For the BootstrapModernLook Framework it works now (ant needs a Library 
>> in folder in the Eclipse project )  I right clicked on build.xml  — 
>> WOLips ant tools — install
>> What did you put in this Library directory ? 
>> 
>> Then for the App I tried to use ant too (right click on build.xml), but 
>> I obtain : Build failed : Error reading project file 
>> /Users/franc/Build/build/build.xml: /Users/franc/Build/build/build.xml
>> such directory don’t exist on my home. (but the build.xml of the App 
>> don’t look like the xml file in other  Wonder Apps projects )
>> 
>> I have to search more what can be wrong on my environment
>> 
>> Thank you Jesse 
>> 
>>> Le 24 oct. 2018 à 23:46, Jesse Tayler  a écrit :
>>> 
>>> I’m not certain why you’d get that —
>>> 
>>> Let’s see, sounds like perhaps it hasn’t got ERXApplication or there is 
>>> some class path trouble.
>>> 
>>> I presume you are able to run other Wonder stuff ok?
>>> 
>>> I right-click on ant build.xml and select Run to install the framework
>>> 
>>> Then I do the same with the Application class of the app and either run 
>>> or debug as WOApplication which sounds like what you are doing.
>>> 
>>> I just checked in 

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Tim Worman
I forked the project and created a pull request that encapsulates these 
changes. Hopefully that fixes the JRE issue.

Tim

> On Oct 25, 2018, at 11:21 AM, Tim Worman  wrote:
> 
> All,
> 
> I just imported the framework project. I changed a couple things. First, 
> change the jdk to use “Workspace Default JRE." That may address the error 
> with the build path having a specific jdk set. Also, I think the missing 
> Libraries folder can be addressed the same way it is for other Wonder 
> frameworks - basically add an empty .gitignore inside the Libraries folder.
> 
> I’m getting quite a few errors in components for “In the WOD, there is no key 
> ‘ in ." Assuming these are keys that will operate 
> correctly at runtime, these should be marked with ‘//VALID’ in the WOD.
> 
> Tim
> UCLA GSEIS
> 
>> On Oct 25, 2018, at 11:14 AM, Theodore Petrosky  wrote:
>> 
>> I did not pull today :(
>> 
>> how does it work with Wonder? I never had to change this when I cloned 
>> Wonder. It just opened using the Java that I had. Maybe I was just lucky.
>> 
>> I will pull in a little while.
>> 
>> Ted
>> 
>> 
>>> On Oct 25, 2018, at 2:07 PM, Jesse Tayler  wrote:
>>> 
>>> Should we change that setting?
>>> 
>>> Ted? You used Ant to build the framework and then just right-click on 
>>> application class to use Run As WoApplication, right?
>>> 
>>> Did you pull whatever is there today and all that?
>>> 
>>> 
>>> 
 On Oct 24, 2018, at 8:31 PM, Theodore Petrosky  wrote:
 
 when i opened your project, the java was listed as jdk_1.7  I did not have 
 that jdk so I had to link in what I have  jdk 1.8.0_144
 
 
> On Oct 24, 2018, at 7:59 PM, Jesse Tayler  wrote:
> 
> I’m cc’ing Robert here who’s great with configuration, I run the app 
> using the right click wonder app options not the build file myself
> 
> My build.xml for the app looks normal and ends with
> 
>
> 
> 
> The build.xml for the frameworks looks normal and far more complex and 
> begins with
> 
> 
> 
> 
> I do see that perhaps because I have peculiar JAVA settings that there 
> may be JAVA issues, and come to think of it, criss-crossed JAVA versions 
> can cause normal classes like the Application class not to build…
> 
> I bet you might see detail in your backtrace about classes loading. I’m 
> going to say this is something to do with your build-settings and 
> specifically the JAVA version numbers being used
> 
> Seems to me the framework might be 1.7 and my app is perhaps 1.8 or SE7 
> and SE8
> 
> I could have checked in a mismatch that perhaps needs adjusting? Robert? 
> 
> 
> 
>> On Oct 24, 2018, at 7:43 PM, Francois BIENTZ  
>> wrote:
>> 
>> Yes I’m able to run other Wonder Apps
>> 
>> For the BootstrapModernLook Framework it works now (ant needs a Library 
>> in folder in the Eclipse project )  I right clicked on build.xml  — 
>> WOLips ant tools — install
>> What did you put in this Library directory ? 
>> 
>> Then for the App I tried to use ant too (right click on build.xml), but 
>> I obtain : Build failed : Error reading project file 
>> /Users/franc/Build/build/build.xml: /Users/franc/Build/build/build.xml
>> such directory don’t exist on my home. (but the build.xml of the App 
>> don’t look like the xml file in other  Wonder Apps projects )
>> 
>> I have to search more what can be wrong on my environment
>> 
>> Thank you Jesse 
>> 
>>> Le 24 oct. 2018 à 23:46, Jesse Tayler  a écrit :
>>> 
>>> I’m not certain why you’d get that —
>>> 
>>> Let’s see, sounds like perhaps it hasn’t got ERXApplication or there is 
>>> some class path trouble.
>>> 
>>> I presume you are able to run other Wonder stuff ok?
>>> 
>>> I right-click on ant build.xml and select Run to install the framework
>>> 
>>> Then I do the same with the Application class of the app and either run 
>>> or debug as WOApplication which sounds like what you are doing.
>>> 
>>> I just checked in whatever I might have to be sure I have left the 
>>> build ok, it seems ok from here.
>>> 
>>> You might just pull and make clean / install or check that wonder paths 
>>> are ok in build path?
>>> 
>>> I’m terrible with Eclipse!!
>>> 
>>> 
>>> 
>>> 
 On Oct 24, 2018, at 5:38 PM, Francois BIENTZ  
 wrote:
 
> Most of the basics are now working, but this is still early 
> construction please let me know if you’re able to get things to build 
> and run…it’s really helpful to get reports at this juncture, so 
> thanks!
 
 I imported BootstrapModernLook and UltraModernMoviesDemo in Eclipse 
 but I get  : can’t find or load the main class 
 er.modern.movies.demo.Application  (Run As — 

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Tim Worman
All,

I just imported the framework project. I changed a couple things. First, change 
the jdk to use “Workspace Default JRE." That may address the error with the 
build path having a specific jdk set. Also, I think the missing Libraries 
folder can be addressed the same way it is for other Wonder frameworks - 
basically add an empty .gitignore inside the Libraries folder.

I’m getting quite a few errors in components for “In the WOD, there is no key 
‘ in ." Assuming these are keys that will operate 
correctly at runtime, these should be marked with ‘//VALID’ in the WOD.

Tim
UCLA GSEIS

> On Oct 25, 2018, at 11:14 AM, Theodore Petrosky  wrote:
> 
> I did not pull today :(
> 
> how does it work with Wonder? I never had to change this when I cloned 
> Wonder. It just opened using the Java that I had. Maybe I was just lucky.
> 
> I will pull in a little while.
> 
> Ted
> 
> 
>> On Oct 25, 2018, at 2:07 PM, Jesse Tayler  wrote:
>> 
>> Should we change that setting?
>> 
>> Ted? You used Ant to build the framework and then just right-click on 
>> application class to use Run As WoApplication, right?
>> 
>> Did you pull whatever is there today and all that?
>> 
>> 
>> 
>>> On Oct 24, 2018, at 8:31 PM, Theodore Petrosky  wrote:
>>> 
>>> when i opened your project, the java was listed as jdk_1.7  I did not have 
>>> that jdk so I had to link in what I have  jdk 1.8.0_144
>>> 
>>> 
 On Oct 24, 2018, at 7:59 PM, Jesse Tayler  wrote:
 
 I’m cc’ing Robert here who’s great with configuration, I run the app using 
 the right click wonder app options not the build file myself
 
 My build.xml for the app looks normal and ends with
 
 
 
 
 The build.xml for the frameworks looks normal and far more complex and 
 begins with
 
 
 
 
 I do see that perhaps because I have peculiar JAVA settings that there may 
 be JAVA issues, and come to think of it, criss-crossed JAVA versions can 
 cause normal classes like the Application class not to build…
 
 I bet you might see detail in your backtrace about classes loading. I’m 
 going to say this is something to do with your build-settings and 
 specifically the JAVA version numbers being used
 
 Seems to me the framework might be 1.7 and my app is perhaps 1.8 or SE7 
 and SE8
 
 I could have checked in a mismatch that perhaps needs adjusting? Robert? 
 
 
 
> On Oct 24, 2018, at 7:43 PM, Francois BIENTZ  wrote:
> 
> Yes I’m able to run other Wonder Apps
> 
> For the BootstrapModernLook Framework it works now (ant needs a Library 
> in folder in the Eclipse project )  I right clicked on build.xml  — 
> WOLips ant tools — install
> What did you put in this Library directory ? 
> 
> Then for the App I tried to use ant too (right click on build.xml), but I 
> obtain : Build failed : Error reading project file 
> /Users/franc/Build/build/build.xml: /Users/franc/Build/build/build.xml
> such directory don’t exist on my home. (but the build.xml of the App 
> don’t look like the xml file in other  Wonder Apps projects )
> 
> I have to search more what can be wrong on my environment 
> 
> Thank you Jesse 
> 
>> Le 24 oct. 2018 à 23:46, Jesse Tayler  a écrit :
>> 
>> I’m not certain why you’d get that —
>> 
>> Let’s see, sounds like perhaps it hasn’t got ERXApplication or there is 
>> some class path trouble.
>> 
>> I presume you are able to run other Wonder stuff ok?
>> 
>> I right-click on ant build.xml and select Run to install the framework
>> 
>> Then I do the same with the Application class of the app and either run 
>> or debug as WOApplication which sounds like what you are doing.
>> 
>> I just checked in whatever I might have to be sure I have left the build 
>> ok, it seems ok from here.
>> 
>> You might just pull and make clean / install or check that wonder paths 
>> are ok in build path?
>> 
>> I’m terrible with Eclipse!!
>> 
>> 
>> 
>> 
>>> On Oct 24, 2018, at 5:38 PM, Francois BIENTZ  
>>> wrote:
>>> 
 Most of the basics are now working, but this is still early 
 construction please let me know if you’re able to get things to build 
 and run…it’s really helpful to get reports at this juncture, so thanks!
>>> 
>>> I imported BootstrapModernLook and UltraModernMoviesDemo in Eclipse but 
>>> I get  : can’t find or load the main class 
>>> er.modern.movies.demo.Application  (Run As — WOApplication )
>>> is there another tool to use ?
>>> 
>>> 
>>> 
>>> Thank you
>> 
> 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your 

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-25 Thread Jesse Tayler
Should we change that setting?

Ted? You used Ant to build the framework and then just right-click on 
application class to use Run As WoApplication, right?

Did you pull whatever is there today and all that?



> On Oct 24, 2018, at 8:31 PM, Theodore Petrosky  wrote:
> 
> when i opened your project, the java was listed as jdk_1.7  I did not have 
> that jdk so I had to link in what I have  jdk 1.8.0_144
> 
> 
>> On Oct 24, 2018, at 7:59 PM, Jesse Tayler > > wrote:
>> 
>> I’m cc’ing Robert here who’s great with configuration, I run the app using 
>> the right click wonder app options not the build file myself
>> 
>> My build.xml for the app looks normal and ends with
>> 
>> 
>> 
>> 
>> The build.xml for the frameworks looks normal and far more complex and 
>> begins with
>> 
>> 
>> 
>> 
>> I do see that perhaps because I have peculiar JAVA settings that there may 
>> be JAVA issues, and come to think of it, criss-crossed JAVA versions can 
>> cause normal classes like the Application class not to build…
>> 
>> I bet you might see detail in your backtrace about classes loading. I’m 
>> going to say this is something to do with your build-settings and 
>> specifically the JAVA version numbers being used
>> 
>> Seems to me the framework might be 1.7 and my app is perhaps 1.8 or SE7 and 
>> SE8
>> 
>> I could have checked in a mismatch that perhaps needs adjusting? Robert? 
>> 
>> 
>> 
>>> On Oct 24, 2018, at 7:43 PM, Francois BIENTZ >> > wrote:
>>> 
>>> Yes I’m able to run other Wonder Apps
>>> 
>>> For the BootstrapModernLook Framework it works now (ant needs a Library in 
>>> folder in the Eclipse project )  I right clicked on build.xml  — WOLips ant 
>>> tools — install
>>> What did you put in this Library directory ? 
>>> 
>>> Then for the App I tried to use ant too (right click on build.xml), but I 
>>> obtain : Build failed : Error reading project file 
>>> /Users/franc/Build/build/build.xml: /Users/franc/Build/build/build.xml
>>> such directory don’t exist on my home. (but the build.xml of the App don’t 
>>> look like the xml file in other  Wonder Apps projects )
>>> 
>>> I have to search more what can be wrong on my environment   
>>> 
>>> Thank you Jesse 
>>> 
 Le 24 oct. 2018 à 23:46, Jesse Tayler >>> > a écrit :
 
 I’m not certain why you’d get that —
 
 Let’s see, sounds like perhaps it hasn’t got ERXApplication or there is 
 some class path trouble.
 
 I presume you are able to run other Wonder stuff ok?
 
 I right-click on ant build.xml and select Run to install the framework
 
 Then I do the same with the Application class of the app and either run or 
 debug as WOApplication which sounds like what you are doing.
 
 I just checked in whatever I might have to be sure I have left the build 
 ok, it seems ok from here.
 
 You might just pull and make clean / install or check that wonder paths 
 are ok in build path?
 
 I’m terrible with Eclipse!!
 
 
 
 
> On Oct 24, 2018, at 5:38 PM, Francois BIENTZ  > wrote:
> 
>> Most of the basics are now working, but this is still early construction 
>> please let me know if you’re able to get things to build and run…it’s 
>> really helpful to get reports at this juncture, so thanks!
> 
> I imported BootstrapModernLook and UltraModernMoviesDemo in Eclipse but I 
> get  : can’t find or load the main class 
> er.modern.movies.demo.Application  (Run As — WOApplication )
> is there another tool to use ?
> 
> 
> 
> Thank you
 
>>> 
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
>> )
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/webobjects-dev/tedpet5%40yahoo.com 
>> 
>> 
>> This email sent to tedp...@yahoo.com
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-24 Thread Jesse Tayler
I’m cc’ing Robert here who’s great with configuration, I run the app using the 
right click wonder app options not the build file myself

My build.xml for the app looks normal and ends with




The build.xml for the frameworks looks normal and far more complex and begins 
with




I do see that perhaps because I have peculiar JAVA settings that there may be 
JAVA issues, and come to think of it, criss-crossed JAVA versions can cause 
normal classes like the Application class not to build…

I bet you might see detail in your backtrace about classes loading. I’m going 
to say this is something to do with your build-settings and specifically the 
JAVA version numbers being used

Seems to me the framework might be 1.7 and my app is perhaps 1.8 or SE7 and SE8

I could have checked in a mismatch that perhaps needs adjusting? Robert? 



> On Oct 24, 2018, at 7:43 PM, Francois BIENTZ  wrote:
> 
> Yes I’m able to run other Wonder Apps
> 
> For the BootstrapModernLook Framework it works now (ant needs a Library in 
> folder in the Eclipse project )  I right clicked on build.xml  — WOLips ant 
> tools — install
> What did you put in this Library directory ? 
> 
> Then for the App I tried to use ant too (right click on build.xml), but I 
> obtain : Build failed : Error reading project file 
> /Users/franc/Build/build/build.xml: /Users/franc/Build/build/build.xml
> such directory don’t exist on my home. (but the build.xml of the App don’t 
> look like the xml file in other  Wonder Apps projects )
> 
> I have to search more what can be wrong on my environment 
> 
> Thank you Jesse 
> 
>> Le 24 oct. 2018 à 23:46, Jesse Tayler  a écrit :
>> 
>> I’m not certain why you’d get that —
>> 
>> Let’s see, sounds like perhaps it hasn’t got ERXApplication or there is some 
>> class path trouble.
>> 
>> I presume you are able to run other Wonder stuff ok?
>> 
>> I right-click on ant build.xml and select Run to install the framework
>> 
>> Then I do the same with the Application class of the app and either run or 
>> debug as WOApplication which sounds like what you are doing.
>> 
>> I just checked in whatever I might have to be sure I have left the build ok, 
>> it seems ok from here.
>> 
>> You might just pull and make clean / install or check that wonder paths are 
>> ok in build path?
>> 
>> I’m terrible with Eclipse!!
>> 
>> 
>> 
>> 
>>> On Oct 24, 2018, at 5:38 PM, Francois BIENTZ  wrote:
>>> 
 Most of the basics are now working, but this is still early construction 
 please let me know if you’re able to get things to build and run…it’s 
 really helpful to get reports at this juncture, so thanks!
>>> 
>>> I imported BootstrapModernLook and UltraModernMoviesDemo in Eclipse but I 
>>> get  : can’t find or load the main class er.modern.movies.demo.Application  
>>> (Run As — WOApplication )
>>> is there another tool to use ?
>>> 
>>> 
>>> 
>>> Thank you
>> 
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-24 Thread Francois BIENTZ
Yes I’m able to run other Wonder Apps

For the BootstrapModernLook Framework it works now (ant needs a Library in 
folder in the Eclipse project )  I right clicked on build.xml  — WOLips ant 
tools — install
What did you put in this Library directory ? 

Then for the App I tried to use ant too (right click on build.xml), but I 
obtain : Build failed : Error reading project file 
/Users/franc/Build/build/build.xml: /Users/franc/Build/build/build.xml
such directory don’t exist on my home. (but the build.xml of the App don’t look 
like the xml file in other  Wonder Apps projects )

I have to search more what can be wrong on my environment   

Thank you Jesse 

> Le 24 oct. 2018 à 23:46, Jesse Tayler  a écrit :
> 
> I’m not certain why you’d get that —
> 
> Let’s see, sounds like perhaps it hasn’t got ERXApplication or there is some 
> class path trouble.
> 
> I presume you are able to run other Wonder stuff ok?
> 
> I right-click on ant build.xml and select Run to install the framework
> 
> Then I do the same with the Application class of the app and either run or 
> debug as WOApplication which sounds like what you are doing.
> 
> I just checked in whatever I might have to be sure I have left the build ok, 
> it seems ok from here.
> 
> You might just pull and make clean / install or check that wonder paths are 
> ok in build path?
> 
> I’m terrible with Eclipse!!
> 
> 
> 
> 
>> On Oct 24, 2018, at 5:38 PM, Francois BIENTZ  wrote:
>> 
>>> Most of the basics are now working, but this is still early construction 
>>> please let me know if you’re able to get things to build and run…it’s 
>>> really helpful to get reports at this juncture, so thanks!
>> 
>> I imported BootstrapModernLook and UltraModernMoviesDemo in Eclipse but I 
>> get  : can’t find or load the main class er.modern.movies.demo.Application  
>> (Run As — WOApplication )
>> is there another tool to use ?
>> 
>> 
>> 
>> Thank you
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-24 Thread Jesse Tayler
I’m not certain why you’d get that —

Let’s see, sounds like perhaps it hasn’t got ERXApplication or there is some 
class path trouble.

I presume you are able to run other Wonder stuff ok?

I right-click on ant build.xml and select Run to install the framework

Then I do the same with the Application class of the app and either run or 
debug as WOApplication which sounds like what you are doing.

I just checked in whatever I might have to be sure I have left the build ok, it 
seems ok from here.

You might just pull and make clean / install or check that wonder paths are ok 
in build path?

I’m terrible with Eclipse!!




> On Oct 24, 2018, at 5:38 PM, Francois BIENTZ  wrote:
> 
>> Most of the basics are now working, but this is still early construction 
>> please let me know if you’re able to get things to build and run…it’s really 
>> helpful to get reports at this juncture, so thanks!
> 
> I imported BootstrapModernLook and UltraModernMoviesDemo in Eclipse but I get 
>  : can’t find or load the main class er.modern.movies.demo.Application  (Run 
> As — WOApplication )
> is there another tool to use ?
> 
> 
> 
> Thank you

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-24 Thread Francois BIENTZ
> Most of the basics are now working, but this is still early construction 
> please let me know if you’re able to get things to build and run…it’s really 
> helpful to get reports at this juncture, so thanks!

I imported BootstrapModernLook and UltraModernMoviesDemo in Eclipse but I get  
: can’t find or load the main class er.modern.movies.demo.Application  (Run As 
— WOApplication )
is there another tool to use ?
 


Thank you
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-19 Thread Jesse Tayler

This framework will transform you from ugly…. to irresistible—

https://youtu.be/4H1Lc_JHF7I?t=97


Here’s some screen shots:

https://i.imgur.com/WtDLHX9.jpg

https://i.imgur.com/YsnKLP6.png

https://i.imgur.com/GhSAft0.png

https://i.imgur.com/11ONg0M.png

https://i.imgur.com/vmEtEMV.png

https://i.imgur.com/3P4ofrd.png



Most of the basics are now working, but this is still early construction

please let me know if you’re able to get things to build and run…it’s really 
helpful to get reports at this juncture, so thanks!

Git clone the framework:

https://github.com/jtayler/BootstrapModernLook

Git clone new, demo app:

https://github.com/jtayler/UltraModernMoviesDemo



 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-18 Thread Jesse Tayler
Well, it is still VERY early and I’m having trouble with conflicting javascript 
perhaps?

I have several components with tiny javascript bits no them, nearly all are 
failing with that old error of jQuery not found or something…

Please look at the page wrapper and see if you can figure what’s wrong there.

It is EARLY but there’s nearly all the basic components, menus are starting to 
work you can navigate and edit most things.




Git clone the framework:

https://github.com/jtayler/BootstrapModernLook

Git clone new, ultramodern demo app:

https://github.com/jtayler/UltraModernMoviesDemo


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler
???
>>>>>>>> 
>>>>>>>> Anyway, it gets into an infinite loop that throws the stack until you 
>>>>>>>> run out of memory.
>>>>>>>> 
>>>>>>>> Is this perhaps because I’m not configured right or because I have not 
>>>>>>>> built a dependency perhaps?
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>>at 
>>>>>>>> com.webobjects.appserver._private.WODeployedBundle._newPreloadAllResourcesInSubDirectory(WODeployedBundle.java:297)
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>>> On Oct 16, 2018, at 2:59 PM, Theodore Petrosky  
>>>>>>>>> wrote:
>>>>>>>>> 
>>>>>>>>> Weird, ERModernMoviesDemo with ERMoviesLogic work just fine for me! I 
>>>>>>>>> just compiled it and ran it to make sure!
>>>>>>>>> 
>>>>>>>>> It would be nice to start with this demo as it is set up to to all 
>>>>>>>>> the different migrations for Postgresql, MySQL, Derby, H2. 
>>>>>>>>> 
>>>>>>>>> ERMovies worked fine also.
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>>> On Oct 16, 2018, at 2:06 PM, Jesse Tayler  wrote:
>>>>>>>>>> 
>>>>>>>>>> Movies was a nice simple model that if I had migrations or in-memory 
>>>>>>>>>> it would allow me to render some D2W data rather than just present 
>>>>>>>>>> some HTML.
>>>>>>>>>> 
>>>>>>>>>> I can add a simple app next to the framework and we can figure if 
>>>>>>>>>> Movies or something else is easy to put in there.
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>>> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
>>>>>>>>>>> 
>>>>>>>>>>> If my memory serves me correctly: Movies.woa had an in-memory db 
>>>>>>>>>>> option, right? Are you thinking it might be an option to 
>>>>>>>>>>> resuscitate Movies.woa and add your samples there. Or maybe just 
>>>>>>>>>>> replace it altogether with a modernized version that uses the 
>>>>>>>>>>> movies data?
>>>>>>>>>>> 
>>>>>>>>>>> Tim
>>>>>>>>>>> 
>>>>>>>>>>>> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  
>>>>>>>>>>>> wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> I’d like to add a simple test / demo app or at least a page to 
>>>>>>>>>>>> show things working
>>>>>>>>>>>> 
>>>>>>>>>>>> I see Movies.woa is no longer working?
>>>>>>>>>>>> 
>>>>>>>>>>>> I figured there would be something with migrations that could just 
>>>>>>>>>>>> run and load a basic model?
>>>>>>>>>>>> 
>>>>>>>>>>>> Anyone have suggestions how I should set that up?
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>>> On Oct 15, 2018, at 10:26 PM, Tim Worman  
>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Yes, for sure.
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky 
>>>>>>>>>>>>>>  wrote:
>>>>>>>>&

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler
gt; Anyway, it gets into an infinite loop that throws the stack until you 
>>>>>>>> run out of memory.
>>>>>>>> 
>>>>>>>> Is this perhaps because I’m not configured right or because I have not 
>>>>>>>> built a dependency perhaps?
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>>at 
>>>>>>>> com.webobjects.appserver._private.WODeployedBundle._newPreloadAllResourcesInSubDirectory(WODeployedBundle.java:297)
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>>> On Oct 16, 2018, at 2:59 PM, Theodore Petrosky  
>>>>>>>>> wrote:
>>>>>>>>> 
>>>>>>>>> Weird, ERModernMoviesDemo with ERMoviesLogic work just fine for me! I 
>>>>>>>>> just compiled it and ran it to make sure!
>>>>>>>>> 
>>>>>>>>> It would be nice to start with this demo as it is set up to to all 
>>>>>>>>> the different migrations for Postgresql, MySQL, Derby, H2. 
>>>>>>>>> 
>>>>>>>>> ERMovies worked fine also.
>>>>>>>>> 
>>>>>>>>> 
>>>>>>>>>> On Oct 16, 2018, at 2:06 PM, Jesse Tayler  wrote:
>>>>>>>>>> 
>>>>>>>>>> Movies was a nice simple model that if I had migrations or in-memory 
>>>>>>>>>> it would allow me to render some D2W data rather than just present 
>>>>>>>>>> some HTML.
>>>>>>>>>> 
>>>>>>>>>> I can add a simple app next to the framework and we can figure if 
>>>>>>>>>> Movies or something else is easy to put in there.
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>>> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
>>>>>>>>>>> 
>>>>>>>>>>> If my memory serves me correctly: Movies.woa had an in-memory db 
>>>>>>>>>>> option, right? Are you thinking it might be an option to 
>>>>>>>>>>> resuscitate Movies.woa and add your samples there. Or maybe just 
>>>>>>>>>>> replace it altogether with a modernized version that uses the 
>>>>>>>>>>> movies data?
>>>>>>>>>>> 
>>>>>>>>>>> Tim
>>>>>>>>>>> 
>>>>>>>>>>>> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  
>>>>>>>>>>>> wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> I’d like to add a simple test / demo app or at least a page to 
>>>>>>>>>>>> show things working
>>>>>>>>>>>> 
>>>>>>>>>>>> I see Movies.woa is no longer working?
>>>>>>>>>>>> 
>>>>>>>>>>>> I figured there would be something with migrations that could just 
>>>>>>>>>>>> run and load a basic model?
>>>>>>>>>>>> 
>>>>>>>>>>>> Anyone have suggestions how I should set that up?
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>>> On Oct 15, 2018, at 10:26 PM, Tim Worman  
>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Yes, for sure.
>>>>>>>>>>>>> 
>>>>>>>>>>>>>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky 
>>>>>>>>>>>>>>  wrote:
>>>>>>>>>>>>>> 
>>>>>>>>>>>>>> Jesse,
>>>>&

Re: Interested in Modern UI Kits, like Bootstrap

2018-10-17 Thread Tim Worman
I was going to suggest the same. I forked that project and I’ve been testing it 
out some. I also added a date-time picker component.

Tim
UCLA GSE 

> On Oct 17, 2018, at 12:08 AM, francois.bie...@orange.com wrote:
> 
> Can this work from Goetz Neumann be helpful ?
> 
> https://github.com/AppWonder/DDBootstrap3
> https://github.com/AppWonder/DDBootstrap3Demo
> 
> 
> 
> _
> 
> Ce message et ses pieces jointes peuvent contenir des informations 
> confidentielles ou privilegiees et ne doivent donc
> pas etre diffuses, exploites ou copies sans autorisation. Si vous avez recu 
> ce message par erreur, veuillez le signaler
> a l'expediteur et le detruire ainsi que les pieces jointes. Les messages 
> electroniques etant susceptibles d'alteration,
> Orange decline toute responsabilite si ce message a ete altere, deforme ou 
> falsifie. Merci.
> 
> This message and its attachments may contain confidential or privileged 
> information that may be protected by law;
> they should not be distributed, used or copied without authorisation.
> If you have received this email in error, please notify the sender and delete 
> this message and its attachments.
> As emails may be altered, Orange is not liable for messages that have been 
> modified, changed or falsified.
> Thank you.
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/webobjects-dev/lists%40thetimmy.com
> 
> This email sent to li...@thetimmy.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler
t;>>> Movies was a nice simple model that if I had migrations or in-memory 
>>>>>>>> it would allow me to render some D2W data rather than just present 
>>>>>>>> some HTML.
>>>>>>>> 
>>>>>>>> I can add a simple app next to the framework and we can figure if 
>>>>>>>> Movies or something else is easy to put in there.
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>>> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
>>>>>>>>> 
>>>>>>>>> If my memory serves me correctly: Movies.woa had an in-memory db 
>>>>>>>>> option, right? Are you thinking it might be an option to resuscitate 
>>>>>>>>> Movies.woa and add your samples there. Or maybe just replace it 
>>>>>>>>> altogether with a modernized version that uses the movies data?
>>>>>>>>> 
>>>>>>>>> Tim
>>>>>>>>> 
>>>>>>>>>> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  wrote:
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> I’d like to add a simple test / demo app or at least a page to show 
>>>>>>>>>> things working
>>>>>>>>>> 
>>>>>>>>>> I see Movies.woa is no longer working?
>>>>>>>>>> 
>>>>>>>>>> I figured there would be something with migrations that could just 
>>>>>>>>>> run and load a basic model?
>>>>>>>>>> 
>>>>>>>>>> Anyone have suggestions how I should set that up?
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>>>> On Oct 15, 2018, at 10:26 PM, Tim Worman  wrote:
>>>>>>>>>>> 
>>>>>>>>>>> Yes, for sure.
>>>>>>>>>>> 
>>>>>>>>>>>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky  
>>>>>>>>>>>> wrote:
>>>>>>>>>>>> 
>>>>>>>>>>>> Jesse,
>>>>>>>>>>>> 
>>>>>>>>>>>> of course!!!
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> Ted
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>> 
>>>>>>>>>>>>> On Oct 15, 2018, at 2:04 PM, Jesse Tayler  
>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Hi All
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Anyone interested in modern UI kits like Bootstrap & Shards with 
>>>>>>>>>>>>> WO?
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Robert Hanna and I, have started a very simple framework 
>>>>>>>>>>>>> migrating Bootstrap stuff out of an app. Stuff people might find 
>>>>>>>>>>>>> really useful —Beautiful table-free list-views, fantastic looking 
>>>>>>>>>>>>> forms with all modern input tagging, sliders and date pickers 
>>>>>>>>>>>>> that all support modern inline icons (Material and FontAwesome) 
>>>>>>>>>>>>> plus random things like alerts nav bars etc.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Read along down this page to see UI examples
>>>>>>>>>>>>> 
>>>>>>>>>>>>> https://designrevision.com/demo/shards/
>>>>>>>>>>>>> 
>>>>>>>>>>>>> One D2W rule sets up a "Card" with a dictionary that configures 
>>>>>>>>>>>>> any of the many different options. Display a top or bottom image, 
>>>>>>>>>>>>> have a button, make the button square, outlined or primary-btn 
>>>>>>>>>>>>> styled etc. Add a footer, body, title… The rules include all the 
>>>>>>>>>>>>> keys you'll find in Bootstrap/Shards css tags as part of a D2W 
>>>>>>>>>>>>> configuration.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> You can have crazy cool class tags: 
>>>>>>>>>>>>> 
>>>>>>>>>>>>>   objectCardColumnClass = "col-sm-6 col-md col-lg-3 pb-4”. 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> Which makes a dynamic grid that displays on tiny or giant screens.
>>>>>>>>>>>>> 
>>>>>>>>>>>>> https://designrevision.com/docs/shards/cards.html
>>>>>>>>>>>>> 
>>>>>>>>>>>>> This one rule here sets up a card and configures each option you 
>>>>>>>>>>>>> see in the attached:
>>>>>>>>>>>>> 
>>>>>>>>>>>>> cardSectionsContents =  
>>>>>>>>>>>>> {
>>>>>>>>>>>>> "card-img-top" = "object.imageURL"; 
>>>>>>>>>>>>> "card-link" = "object.publicURLString"; 
>>>>>>>>>>>>> "card-text" = "object.title"; 
>>>>>>>>>>>>> "card-title" = "object.venue.title"; 
>>>>>>>>>>>>> "cardLInkTitle" = "Tell me more "; 
>>>>>>>>>>>>> "cardLinkClass" = "btn btn-primary";
>>>>>>>>>>>>> }
>>>>>>>>>>>>> 
>>>>>>>>>>>>> 
>>>>>>>>>>>>> ___
>>>>>>>>>>>>> Do not post admin requests to the list. They will be ignored.
>>>>>>>>>>>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>>>>>>>>>>>> Help/Unsubscribe/Update your Subscription:
>>>>>>>>>>>>> https://lists.apple.com/mailman/options/webobjects-dev/tedpet5%40yahoo.com
>>>>>>>>>>>>> 
>>>>>>>>>>>>> This email sent to tedp...@yahoo.com
>>>>>>>>>>>> 
>>>>>>>>>>>> ___
>>>>>>>>>>>> Do not post admin requests to the list. They will be ignored.
>>>>>>>>>>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>>>>>>>>>>> Help/Unsubscribe/Update your Subscription:
>>>>>>>>>>>> https://lists.apple.com/mailman/options/webobjects-dev/lists%40thetimmy.com
>>>>>>>>>>>> 
>>>>>>>>>>>> This email sent to li...@thetimmy.com
>>>>>>>>>>> 
>>>>>>>>>> 
>>>>>>>>> 
>>>>>>>> 
>>>>>>> 
>>>>>> 
>>>>>> ___
>>>>>> Do not post admin requests to the list. They will be ignored.
>>>>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>>>>> Help/Unsubscribe/Update your Subscription:
>>>>>> https://lists.apple.com/mailman/options/webobjects-dev/lists.fabian%40e-lumo.com
>>>>>> 
>>>>>> This email sent to lists.fab...@e-lumo.com
>>>>> 
>>>> 
>>> 
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/webobjects-dev/tedpet5%40yahoo.com
>> 
>> This email sent to tedp...@yahoo.com
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Theodore Petrosky
interesting I just created a little test and I found that if I put the 
ERXStyleShhet in the WOD it worked but not inline!

try using the WOD



BootstrapCSS : ERXStyleSheet {
filename = "ermod-overrides.css";
framework = "BootstrapModernLook";
}


> On Oct 17, 2018, at 10:01 AM, Jesse Tayler  wrote:
> 
> 
> Ok, I have the ERModernMoviesDemo app running and linked to the new framework.
> 
> I notice my rules and components are working, but the css overrides is not 
> loading??
> 
>   "ermod-overrides.css" />
> 
> 
> It’s almost like ERXStyleSheet isn’t working or something?
> 
> This seems fine in my other app — how are folks loading in framework based 
> css files?
> 
> I see a stylesheet injector which seems to accept only the sheets listed in a 
> rule from the modern look...
> 
> 
> 
> 
>> On Oct 17, 2018, at 9:23 AM, lists.fab...@e-lumo.com wrote:
>> 
>> Hi Jesse,
>> 
>> That does indeed look suspicious, so it might be the space in the username.
>> 
>> Fabian
>> 
>>> Am 17.10.2018 um 13:41 schrieb Jesse Tayler :
>>> 
>>> Hi Fabian
>>> 
>>> I’m guessing this might be related to the fact that Migration Assistant 
>>> once assisted me and kindly created a new home folder with a jtayler 1 in 
>>> it…yes, including the space…
>>> 
>>> So, I have had to do some local stuff and likely should break down and just 
>>> change my home dir in the UNIX system so I can go on with my post-migration 
>>> life.
>>> 
>>> What does this error suggest?
>>> 
>>> 
>>> 
>>> 
>>> BUILD FAILED
>>> /Users/jtayler 1/Downloads/Archive/ERModernMoviesDemo/build.xml:7: The 
>>> following error occurred while executing this line:
>>> Error reading project file /Users/jtayler 1/Build/build/build.xml: 
>>> /Users/jtayler 1/Build/build/build.xml
>>> 
>>> 
>>>> On Oct 17, 2018, at 1:57 AM, Fabian Peters  wrote:
>>>> 
>>>> Hi Jesse,
>>>> 
>>>> Can you show a bit more of the stacktrace please?
>>>> 
>>>> Fabian
>>>> 
>>>>> Am 16.10.2018 um 21:29 schrieb Jesse Tayler :
>>>>> 
>>>>> Ted-
>>>>> 
>>>>> Oh, that’s great — that would be perfect because you could compare things 
>>>>> easily and I can show some modern D2W ideas that are useful
>>>>> 
>>>>> I am able to find and import the app and try to run it, it locks up after 
>>>>> launch and listing SQL although I don’t know where from — ???
>>>>> 
>>>>> Anyway, it gets into an infinite loop that throws the stack until you run 
>>>>> out of memory.
>>>>> 
>>>>> Is this perhaps because I’m not configured right or because I have not 
>>>>> built a dependency perhaps?
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>>   at 
>>>>> com.webobjects.appserver._private.WODeployedBundle._newPreloadAllResourcesInSubDirectory(WODeployedBundle.java:297)
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>>> On Oct 16, 2018, at 2:59 PM, Theodore Petrosky  wrote:
>>>>>> 
>>>>>> Weird, ERModernMoviesDemo with ERMoviesLogic work just fine for me! I 
>>>>>> just compiled it and ran it to make sure!
>>>>>> 
>>>>>> It would be nice to start with this demo as it is set up to to all the 
>>>>>> different migrations for Postgresql, MySQL, Derby, H2. 
>>>>>> 
>>>>>> ERMovies worked fine also.
>>>>>> 
>>>>>> 
>>>>>>> On Oct 16, 2018, at 2:06 PM, Jesse Tayler  wrote:
>>>>>>> 
>>>>>>> Movies was a nice simple model that if I had migrations or in-memory it 
>>>>>>> would allow me to render some D2W data rather than just present some 
>>>>>>> HTML.
>>>>>>> 
>>>>>>> I can add a simple app next to the framework and we can figure if 
>>>>>>> Movies or something else is easy to put in there.
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>>> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
>>>>>>>> 
>>>>>>>> If my m

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler

Ok, I have the ERModernMoviesDemo app running and linked to the new framework.

I notice my rules and components are working, but the css overrides is not 
loading??

  


It’s almost like ERXStyleSheet isn’t working or something?

This seems fine in my other app — how are folks loading in framework based css 
files?

I see a stylesheet injector which seems to accept only the sheets listed in a 
rule from the modern look...




> On Oct 17, 2018, at 9:23 AM, lists.fab...@e-lumo.com wrote:
> 
> Hi Jesse,
> 
> That does indeed look suspicious, so it might be the space in the username.
> 
> Fabian
> 
>> Am 17.10.2018 um 13:41 schrieb Jesse Tayler :
>> 
>> Hi Fabian
>> 
>> I’m guessing this might be related to the fact that Migration Assistant once 
>> assisted me and kindly created a new home folder with a jtayler 1 in it…yes, 
>> including the space…
>> 
>> So, I have had to do some local stuff and likely should break down and just 
>> change my home dir in the UNIX system so I can go on with my post-migration 
>> life.
>> 
>> What does this error suggest?
>> 
>> 
>> 
>> 
>> BUILD FAILED
>> /Users/jtayler 1/Downloads/Archive/ERModernMoviesDemo/build.xml:7: The 
>> following error occurred while executing this line:
>> Error reading project file /Users/jtayler 1/Build/build/build.xml: 
>> /Users/jtayler 1/Build/build/build.xml
>> 
>> 
>>> On Oct 17, 2018, at 1:57 AM, Fabian Peters  wrote:
>>> 
>>> Hi Jesse,
>>> 
>>> Can you show a bit more of the stacktrace please?
>>> 
>>> Fabian
>>> 
>>>> Am 16.10.2018 um 21:29 schrieb Jesse Tayler :
>>>> 
>>>> Ted-
>>>> 
>>>> Oh, that’s great — that would be perfect because you could compare things 
>>>> easily and I can show some modern D2W ideas that are useful
>>>> 
>>>> I am able to find and import the app and try to run it, it locks up after 
>>>> launch and listing SQL although I don’t know where from — ???
>>>> 
>>>> Anyway, it gets into an infinite loop that throws the stack until you run 
>>>> out of memory.
>>>> 
>>>> Is this perhaps because I’m not configured right or because I have not 
>>>> built a dependency perhaps?
>>>> 
>>>> 
>>>> 
>>>> 
>>>>at 
>>>> com.webobjects.appserver._private.WODeployedBundle._newPreloadAllResourcesInSubDirectory(WODeployedBundle.java:297)
>>>> 
>>>> 
>>>> 
>>>> 
>>>>> On Oct 16, 2018, at 2:59 PM, Theodore Petrosky  wrote:
>>>>> 
>>>>> Weird, ERModernMoviesDemo with ERMoviesLogic work just fine for me! I 
>>>>> just compiled it and ran it to make sure!
>>>>> 
>>>>> It would be nice to start with this demo as it is set up to to all the 
>>>>> different migrations for Postgresql, MySQL, Derby, H2. 
>>>>> 
>>>>> ERMovies worked fine also.
>>>>> 
>>>>> 
>>>>>> On Oct 16, 2018, at 2:06 PM, Jesse Tayler  wrote:
>>>>>> 
>>>>>> Movies was a nice simple model that if I had migrations or in-memory it 
>>>>>> would allow me to render some D2W data rather than just present some 
>>>>>> HTML.
>>>>>> 
>>>>>> I can add a simple app next to the framework and we can figure if Movies 
>>>>>> or something else is easy to put in there.
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>>> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
>>>>>>> 
>>>>>>> If my memory serves me correctly: Movies.woa had an in-memory db 
>>>>>>> option, right? Are you thinking it might be an option to resuscitate 
>>>>>>> Movies.woa and add your samples there. Or maybe just replace it 
>>>>>>> altogether with a modernized version that uses the movies data?
>>>>>>> 
>>>>>>> Tim
>>>>>>> 
>>>>>>>> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  wrote:
>>>>>>>> 
>>>>>>>> 
>>>>>>>> I’d like to add a simple test / demo app or at least a page to show 
>>>>>>>> things working
>>>>>>>> 
>>>>>>>> I see Movies.woa is no longer worki

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread lists . fabian
Hi Jesse,

That does indeed look suspicious, so it might be the space in the username.

Fabian

> Am 17.10.2018 um 13:41 schrieb Jesse Tayler :
> 
> Hi Fabian
> 
> I’m guessing this might be related to the fact that Migration Assistant once 
> assisted me and kindly created a new home folder with a jtayler 1 in it…yes, 
> including the space…
> 
> So, I have had to do some local stuff and likely should break down and just 
> change my home dir in the UNIX system so I can go on with my post-migration 
> life.
> 
> What does this error suggest?
> 
> 
> 
> 
> BUILD FAILED
> /Users/jtayler 1/Downloads/Archive/ERModernMoviesDemo/build.xml:7: The 
> following error occurred while executing this line:
> Error reading project file /Users/jtayler 1/Build/build/build.xml: 
> /Users/jtayler 1/Build/build/build.xml
> 
> 
>> On Oct 17, 2018, at 1:57 AM, Fabian Peters  wrote:
>> 
>> Hi Jesse,
>> 
>> Can you show a bit more of the stacktrace please?
>> 
>> Fabian
>> 
>>> Am 16.10.2018 um 21:29 schrieb Jesse Tayler :
>>> 
>>> Ted-
>>> 
>>> Oh, that’s great — that would be perfect because you could compare things 
>>> easily and I can show some modern D2W ideas that are useful
>>> 
>>> I am able to find and import the app and try to run it, it locks up after 
>>> launch and listing SQL although I don’t know where from — ???
>>> 
>>> Anyway, it gets into an infinite loop that throws the stack until you run 
>>> out of memory.
>>> 
>>> Is this perhaps because I’m not configured right or because I have not 
>>> built a dependency perhaps?
>>> 
>>> 
>>> 
>>> 
>>> at 
>>> com.webobjects.appserver._private.WODeployedBundle._newPreloadAllResourcesInSubDirectory(WODeployedBundle.java:297)
>>> 
>>> 
>>> 
>>> 
>>>> On Oct 16, 2018, at 2:59 PM, Theodore Petrosky  wrote:
>>>> 
>>>> Weird, ERModernMoviesDemo with ERMoviesLogic work just fine for me! I just 
>>>> compiled it and ran it to make sure!
>>>> 
>>>> It would be nice to start with this demo as it is set up to to all the 
>>>> different migrations for Postgresql, MySQL, Derby, H2. 
>>>> 
>>>> ERMovies worked fine also.
>>>> 
>>>> 
>>>>> On Oct 16, 2018, at 2:06 PM, Jesse Tayler  wrote:
>>>>> 
>>>>> Movies was a nice simple model that if I had migrations or in-memory it 
>>>>> would allow me to render some D2W data rather than just present some HTML.
>>>>> 
>>>>> I can add a simple app next to the framework and we can figure if Movies 
>>>>> or something else is easy to put in there.
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>>> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
>>>>>> 
>>>>>> If my memory serves me correctly: Movies.woa had an in-memory db option, 
>>>>>> right? Are you thinking it might be an option to resuscitate Movies.woa 
>>>>>> and add your samples there. Or maybe just replace it altogether with a 
>>>>>> modernized version that uses the movies data?
>>>>>> 
>>>>>> Tim
>>>>>> 
>>>>>>> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  wrote:
>>>>>>> 
>>>>>>> 
>>>>>>> I’d like to add a simple test / demo app or at least a page to show 
>>>>>>> things working
>>>>>>> 
>>>>>>> I see Movies.woa is no longer working?
>>>>>>> 
>>>>>>> I figured there would be something with migrations that could just run 
>>>>>>> and load a basic model?
>>>>>>> 
>>>>>>> Anyone have suggestions how I should set that up?
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>>> On Oct 15, 2018, at 10:26 PM, Tim Worman  wrote:
>>>>>>>> 
>>>>>>>> Yes, for sure.
>>>>>>>> 
>>>>>>>>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky  
>>>>>>>>> wrote:
>>>>>>>>> 
>>>>>>>>> Jesse,
>>>>>>>>> 
>>>>>>>>> of course!!!

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-17 Thread Jesse Tayler
Hi Fabian

I’m guessing this might be related to the fact that Migration Assistant once 
assisted me and kindly created a new home folder with a jtayler 1 in it…yes, 
including the space…

So, I have had to do some local stuff and likely should break down and just 
change my home dir in the UNIX system so I can go on with my post-migration 
life.

What does this error suggest?




BUILD FAILED
/Users/jtayler 1/Downloads/Archive/ERModernMoviesDemo/build.xml:7: The 
following error occurred while executing this line:
Error reading project file /Users/jtayler 1/Build/build/build.xml: 
/Users/jtayler 1/Build/build/build.xml


> On Oct 17, 2018, at 1:57 AM, Fabian Peters  wrote:
> 
> Hi Jesse,
> 
> Can you show a bit more of the stacktrace please?
> 
> Fabian
> 
>> Am 16.10.2018 um 21:29 schrieb Jesse Tayler :
>> 
>> Ted-
>> 
>> Oh, that’s great — that would be perfect because you could compare things 
>> easily and I can show some modern D2W ideas that are useful
>> 
>> I am able to find and import the app and try to run it, it locks up after 
>> launch and listing SQL although I don’t know where from — ???
>> 
>> Anyway, it gets into an infinite loop that throws the stack until you run 
>> out of memory.
>> 
>> Is this perhaps because I’m not configured right or because I have not built 
>> a dependency perhaps?
>> 
>> 
>> 
>> 
>>  at 
>> com.webobjects.appserver._private.WODeployedBundle._newPreloadAllResourcesInSubDirectory(WODeployedBundle.java:297)
>> 
>> 
>> 
>> 
>>> On Oct 16, 2018, at 2:59 PM, Theodore Petrosky  wrote:
>>> 
>>> Weird, ERModernMoviesDemo with ERMoviesLogic work just fine for me! I just 
>>> compiled it and ran it to make sure!
>>> 
>>> It would be nice to start with this demo as it is set up to to all the 
>>> different migrations for Postgresql, MySQL, Derby, H2. 
>>> 
>>> ERMovies worked fine also.
>>> 
>>> 
>>>> On Oct 16, 2018, at 2:06 PM, Jesse Tayler  wrote:
>>>> 
>>>> Movies was a nice simple model that if I had migrations or in-memory it 
>>>> would allow me to render some D2W data rather than just present some HTML.
>>>> 
>>>> I can add a simple app next to the framework and we can figure if Movies 
>>>> or something else is easy to put in there.
>>>> 
>>>> 
>>>> 
>>>> 
>>>>> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
>>>>> 
>>>>> If my memory serves me correctly: Movies.woa had an in-memory db option, 
>>>>> right? Are you thinking it might be an option to resuscitate Movies.woa 
>>>>> and add your samples there. Or maybe just replace it altogether with a 
>>>>> modernized version that uses the movies data?
>>>>> 
>>>>> Tim
>>>>> 
>>>>>> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  wrote:
>>>>>> 
>>>>>> 
>>>>>> I’d like to add a simple test / demo app or at least a page to show 
>>>>>> things working
>>>>>> 
>>>>>> I see Movies.woa is no longer working?
>>>>>> 
>>>>>> I figured there would be something with migrations that could just run 
>>>>>> and load a basic model?
>>>>>> 
>>>>>> Anyone have suggestions how I should set that up?
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>>> On Oct 15, 2018, at 10:26 PM, Tim Worman  wrote:
>>>>>>> 
>>>>>>> Yes, for sure.
>>>>>>> 
>>>>>>>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky  
>>>>>>>> wrote:
>>>>>>>> 
>>>>>>>> Jesse,
>>>>>>>> 
>>>>>>>> of course!!!
>>>>>>>> 
>>>>>>>> 
>>>>>>>> Ted
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>>> On Oct 15, 2018, at 2:04 PM, Jesse Tayler  wrote:
>>>>>>>>> 
>>>>>>>>> Hi All
>>>>>>>>> 
>>>>>>>>> Anyone interested in modern UI kits like Bootstrap & Shards with WO?
>>>>>>>>> 
>>>>>>>>> Rob

Re: Interested in Modern UI Kits, like Bootstrap

2018-10-17 Thread francois . bientz
Can this work from Goetz Neumann be helpful ?

https://github.com/AppWonder/DDBootstrap3
https://github.com/AppWonder/DDBootstrap3Demo



_

Ce message et ses pieces jointes peuvent contenir des informations 
confidentielles ou privilegiees et ne doivent donc
pas etre diffuses, exploites ou copies sans autorisation. Si vous avez recu ce 
message par erreur, veuillez le signaler
a l'expediteur et le detruire ainsi que les pieces jointes. Les messages 
electroniques etant susceptibles d'alteration,
Orange decline toute responsabilite si ce message a ete altere, deforme ou 
falsifie. Merci.

This message and its attachments may contain confidential or privileged 
information that may be protected by law;
they should not be distributed, used or copied without authorisation.
If you have received this email in error, please notify the sender and delete 
this message and its attachments.
As emails may be altered, Orange is not liable for messages that have been 
modified, changed or falsified.
Thank you.

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-16 Thread Fabian Peters
Hi Jesse,

Can you show a bit more of the stacktrace please?

Fabian

> Am 16.10.2018 um 21:29 schrieb Jesse Tayler :
> 
> Ted-
> 
> Oh, that’s great — that would be perfect because you could compare things 
> easily and I can show some modern D2W ideas that are useful
> 
> I am able to find and import the app and try to run it, it locks up after 
> launch and listing SQL although I don’t know where from — ???
> 
> Anyway, it gets into an infinite loop that throws the stack until you run out 
> of memory.
> 
> Is this perhaps because I’m not configured right or because I have not built 
> a dependency perhaps?
> 
> 
> 
> 
>   at 
> com.webobjects.appserver._private.WODeployedBundle._newPreloadAllResourcesInSubDirectory(WODeployedBundle.java:297)
> 
> 
> 
> 
>> On Oct 16, 2018, at 2:59 PM, Theodore Petrosky  wrote:
>> 
>> Weird, ERModernMoviesDemo with ERMoviesLogic work just fine for me! I just 
>> compiled it and ran it to make sure!
>> 
>> It would be nice to start with this demo as it is set up to to all the 
>> different migrations for Postgresql, MySQL, Derby, H2. 
>> 
>> ERMovies worked fine also.
>> 
>> 
>>> On Oct 16, 2018, at 2:06 PM, Jesse Tayler  wrote:
>>> 
>>> Movies was a nice simple model that if I had migrations or in-memory it 
>>> would allow me to render some D2W data rather than just present some HTML.
>>> 
>>> I can add a simple app next to the framework and we can figure if Movies or 
>>> something else is easy to put in there.
>>> 
>>> 
>>> 
>>> 
>>>> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
>>>> 
>>>> If my memory serves me correctly: Movies.woa had an in-memory db option, 
>>>> right? Are you thinking it might be an option to resuscitate Movies.woa 
>>>> and add your samples there. Or maybe just replace it altogether with a 
>>>> modernized version that uses the movies data?
>>>> 
>>>> Tim
>>>> 
>>>>> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  wrote:
>>>>> 
>>>>> 
>>>>> I’d like to add a simple test / demo app or at least a page to show 
>>>>> things working
>>>>> 
>>>>> I see Movies.woa is no longer working?
>>>>> 
>>>>> I figured there would be something with migrations that could just run 
>>>>> and load a basic model?
>>>>> 
>>>>> Anyone have suggestions how I should set that up?
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>> 
>>>>>> On Oct 15, 2018, at 10:26 PM, Tim Worman  wrote:
>>>>>> 
>>>>>> Yes, for sure.
>>>>>> 
>>>>>>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky  
>>>>>>> wrote:
>>>>>>> 
>>>>>>> Jesse,
>>>>>>> 
>>>>>>> of course!!!
>>>>>>> 
>>>>>>> 
>>>>>>> Ted
>>>>>>> 
>>>>>>> 
>>>>>>> 
>>>>>>>> On Oct 15, 2018, at 2:04 PM, Jesse Tayler  wrote:
>>>>>>>> 
>>>>>>>> Hi All
>>>>>>>> 
>>>>>>>> Anyone interested in modern UI kits like Bootstrap & Shards with WO?
>>>>>>>> 
>>>>>>>> Robert Hanna and I, have started a very simple framework migrating 
>>>>>>>> Bootstrap stuff out of an app. Stuff people might find really useful 
>>>>>>>> —Beautiful table-free list-views, fantastic looking forms with all 
>>>>>>>> modern input tagging, sliders and date pickers that all support modern 
>>>>>>>> inline icons (Material and FontAwesome) plus random things like alerts 
>>>>>>>> nav bars etc.
>>>>>>>> 
>>>>>>>> Read along down this page to see UI examples
>>>>>>>> 
>>>>>>>> https://designrevision.com/demo/shards/
>>>>>>>> 
>>>>>>>> One D2W rule sets up a "Card" with a dictionary that configures any of 
>>>>>>>> the many different options. Display a top or bottom image, have a 
>>>>>>>> button, make the button square, outlined or primary-btn styled etc. 
>>>>

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-16 Thread Jesse Tayler
Ted-

Oh, that’s great — that would be perfect because you could compare things 
easily and I can show some modern D2W ideas that are useful

I am able to find and import the app and try to run it, it locks up after 
launch and listing SQL although I don’t know where from — ???

Anyway, it gets into an infinite loop that throws the stack until you run out 
of memory.

Is this perhaps because I’m not configured right or because I have not built a 
dependency perhaps?




at 
com.webobjects.appserver._private.WODeployedBundle._newPreloadAllResourcesInSubDirectory(WODeployedBundle.java:297)




> On Oct 16, 2018, at 2:59 PM, Theodore Petrosky  wrote:
> 
> Weird, ERModernMoviesDemo with ERMoviesLogic work just fine for me! I just 
> compiled it and ran it to make sure!
> 
> It would be nice to start with this demo as it is set up to to all the 
> different migrations for Postgresql, MySQL, Derby, H2. 
> 
> ERMovies worked fine also.
> 
> 
>> On Oct 16, 2018, at 2:06 PM, Jesse Tayler  wrote:
>> 
>> Movies was a nice simple model that if I had migrations or in-memory it 
>> would allow me to render some D2W data rather than just present some HTML.
>> 
>> I can add a simple app next to the framework and we can figure if Movies or 
>> something else is easy to put in there.
>> 
>> 
>> 
>> 
>>> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
>>> 
>>> If my memory serves me correctly: Movies.woa had an in-memory db option, 
>>> right? Are you thinking it might be an option to resuscitate Movies.woa and 
>>> add your samples there. Or maybe just replace it altogether with a 
>>> modernized version that uses the movies data?
>>> 
>>> Tim
>>> 
>>>> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  wrote:
>>>> 
>>>> 
>>>> I’d like to add a simple test / demo app or at least a page to show things 
>>>> working
>>>> 
>>>> I see Movies.woa is no longer working?
>>>> 
>>>> I figured there would be something with migrations that could just run and 
>>>> load a basic model?
>>>> 
>>>> Anyone have suggestions how I should set that up?
>>>> 
>>>> 
>>>> 
>>>> 
>>>> 
>>>>> On Oct 15, 2018, at 10:26 PM, Tim Worman  wrote:
>>>>> 
>>>>> Yes, for sure.
>>>>> 
>>>>>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky  wrote:
>>>>>> 
>>>>>> Jesse,
>>>>>> 
>>>>>> of course!!!
>>>>>> 
>>>>>> 
>>>>>> Ted
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>>> On Oct 15, 2018, at 2:04 PM, Jesse Tayler  wrote:
>>>>>>> 
>>>>>>> Hi All
>>>>>>> 
>>>>>>> Anyone interested in modern UI kits like Bootstrap & Shards with WO?
>>>>>>> 
>>>>>>> Robert Hanna and I, have started a very simple framework migrating 
>>>>>>> Bootstrap stuff out of an app. Stuff people might find really useful 
>>>>>>> —Beautiful table-free list-views, fantastic looking forms with all 
>>>>>>> modern input tagging, sliders and date pickers that all support modern 
>>>>>>> inline icons (Material and FontAwesome) plus random things like alerts 
>>>>>>> nav bars etc.
>>>>>>> 
>>>>>>> Read along down this page to see UI examples
>>>>>>> 
>>>>>>> https://designrevision.com/demo/shards/
>>>>>>> 
>>>>>>> One D2W rule sets up a "Card" with a dictionary that configures any of 
>>>>>>> the many different options. Display a top or bottom image, have a 
>>>>>>> button, make the button square, outlined or primary-btn styled etc. Add 
>>>>>>> a footer, body, title… The rules include all the keys you'll find in 
>>>>>>> Bootstrap/Shards css tags as part of a D2W configuration.
>>>>>>> 
>>>>>>> 
>>>>>>> You can have crazy cool class tags: 
>>>>>>> 
>>>>>>> objectCardColumnClass = "col-sm-6 col-md col-lg-3 pb-4”. 
>>>>>>> 
>>>>>>> Which makes a dynamic grid that displays on tiny or giant screens.
>>>>>>> 
>&

Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-16 Thread Jesse Tayler
Movies was a nice simple model that if I had migrations or in-memory it would 
allow me to render some D2W data rather than just present some HTML.

I can add a simple app next to the framework and we can figure if Movies or 
something else is easy to put in there.




> On Oct 16, 2018, at 2:03 PM, Tim Worman  wrote:
> 
> If my memory serves me correctly: Movies.woa had an in-memory db option, 
> right? Are you thinking it might be an option to resuscitate Movies.woa and 
> add your samples there. Or maybe just replace it altogether with a modernized 
> version that uses the movies data?
> 
> Tim
> 
>> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  wrote:
>> 
>> 
>> I’d like to add a simple test / demo app or at least a page to show things 
>> working
>> 
>> I see Movies.woa is no longer working?
>> 
>> I figured there would be something with migrations that could just run and 
>> load a basic model?
>> 
>> Anyone have suggestions how I should set that up?
>> 
>> 
>> 
>> 
>> 
>>> On Oct 15, 2018, at 10:26 PM, Tim Worman  wrote:
>>> 
>>> Yes, for sure.
>>> 
>>>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky  wrote:
>>>> 
>>>> Jesse,
>>>> 
>>>> of course!!!
>>>> 
>>>> 
>>>> Ted
>>>> 
>>>> 
>>>> 
>>>>> On Oct 15, 2018, at 2:04 PM, Jesse Tayler  wrote:
>>>>> 
>>>>> Hi All
>>>>> 
>>>>> Anyone interested in modern UI kits like Bootstrap & Shards with WO?
>>>>> 
>>>>> Robert Hanna and I, have started a very simple framework migrating 
>>>>> Bootstrap stuff out of an app. Stuff people might find really useful 
>>>>> —Beautiful table-free list-views, fantastic looking forms with all modern 
>>>>> input tagging, sliders and date pickers that all support modern inline 
>>>>> icons (Material and FontAwesome) plus random things like alerts nav bars 
>>>>> etc.
>>>>> 
>>>>> Read along down this page to see UI examples
>>>>> 
>>>>> https://designrevision.com/demo/shards/
>>>>> 
>>>>> One D2W rule sets up a "Card" with a dictionary that configures any of 
>>>>> the many different options. Display a top or bottom image, have a button, 
>>>>> make the button square, outlined or primary-btn styled etc. Add a footer, 
>>>>> body, title… The rules include all the keys you'll find in 
>>>>> Bootstrap/Shards css tags as part of a D2W configuration.
>>>>> 
>>>>> 
>>>>> You can have crazy cool class tags: 
>>>>> 
>>>>>   objectCardColumnClass = "col-sm-6 col-md col-lg-3 pb-4”. 
>>>>> 
>>>>> Which makes a dynamic grid that displays on tiny or giant screens.
>>>>> 
>>>>> https://designrevision.com/docs/shards/cards.html
>>>>> 
>>>>> This one rule here sets up a card and configures each option you see in 
>>>>> the attached:
>>>>> 
>>>>> cardSectionsContents =  
>>>>> {
>>>>> "card-img-top" = "object.imageURL"; 
>>>>> "card-link" = "object.publicURLString"; 
>>>>> "card-text" = "object.title"; 
>>>>> "card-title" = "object.venue.title"; 
>>>>> "cardLInkTitle" = "Tell me more "; 
>>>>> "cardLinkClass" = "btn btn-primary";
>>>>> }
>>>>> 
>>>>> 
>>>>> ___
>>>>> Do not post admin requests to the list. They will be ignored.
>>>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>>>> Help/Unsubscribe/Update your Subscription:
>>>>> https://lists.apple.com/mailman/options/webobjects-dev/tedpet5%40yahoo.com
>>>>> 
>>>>> This email sent to tedp...@yahoo.com
>>>> 
>>>> ___
>>>> Do not post admin requests to the list. They will be ignored.
>>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>>> Help/Unsubscribe/Update your Subscription:
>>>> https://lists.apple.com/mailman/options/webobjects-dev/lists%40thetimmy.com
>>>> 
>>>> This email sent to li...@thetimmy.com
>>> 
>> 
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-16 Thread Tim Worman
If my memory serves me correctly: Movies.woa had an in-memory db option, right? 
Are you thinking it might be an option to resuscitate Movies.woa and add your 
samples there. Or maybe just replace it altogether with a modernized version 
that uses the movies data?

Tim

> On Oct 15, 2018, at 11:50 PM, Jesse Tayler  wrote:
> 
> 
> I’d like to add a simple test / demo app or at least a page to show things 
> working
> 
> I see Movies.woa is no longer working?
> 
> I figured there would be something with migrations that could just run and 
> load a basic model?
> 
> Anyone have suggestions how I should set that up?
> 
> 
> 
> 
> 
>> On Oct 15, 2018, at 10:26 PM, Tim Worman  wrote:
>> 
>> Yes, for sure.
>> 
>>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky  wrote:
>>> 
>>> Jesse,
>>> 
>>> of course!!!
>>> 
>>> 
>>> Ted
>>> 
>>> 
>>> 
>>>> On Oct 15, 2018, at 2:04 PM, Jesse Tayler  wrote:
>>>> 
>>>> Hi All
>>>> 
>>>> Anyone interested in modern UI kits like Bootstrap & Shards with WO?
>>>> 
>>>> Robert Hanna and I, have started a very simple framework migrating 
>>>> Bootstrap stuff out of an app. Stuff people might find really useful 
>>>> —Beautiful table-free list-views, fantastic looking forms with all modern 
>>>> input tagging, sliders and date pickers that all support modern inline 
>>>> icons (Material and FontAwesome) plus random things like alerts nav bars 
>>>> etc.
>>>> 
>>>> Read along down this page to see UI examples
>>>> 
>>>> https://designrevision.com/demo/shards/
>>>> 
>>>> One D2W rule sets up a "Card" with a dictionary that configures any of the 
>>>> many different options. Display a top or bottom image, have a button, make 
>>>> the button square, outlined or primary-btn styled etc. Add a footer, body, 
>>>> title… The rules include all the keys you'll find in Bootstrap/Shards css 
>>>> tags as part of a D2W configuration.
>>>> 
>>>> 
>>>> You can have crazy cool class tags: 
>>>> 
>>>>objectCardColumnClass = "col-sm-6 col-md col-lg-3 pb-4”. 
>>>> 
>>>> Which makes a dynamic grid that displays on tiny or giant screens.
>>>> 
>>>> https://designrevision.com/docs/shards/cards.html
>>>> 
>>>> This one rule here sets up a card and configures each option you see in 
>>>> the attached:
>>>> 
>>>> cardSectionsContents =  
>>>> {
>>>> "card-img-top" = "object.imageURL"; 
>>>> "card-link" = "object.publicURLString"; 
>>>> "card-text" = "object.title"; 
>>>> "card-title" = "object.venue.title"; 
>>>> "cardLInkTitle" = "Tell me more "; 
>>>> "cardLinkClass" = "btn btn-primary";
>>>> }
>>>> 
>>>> 
>>>> ___
>>>> Do not post admin requests to the list. They will be ignored.
>>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>>> Help/Unsubscribe/Update your Subscription:
>>>> https://lists.apple.com/mailman/options/webobjects-dev/tedpet5%40yahoo.com
>>>> 
>>>> This email sent to tedp...@yahoo.com
>>> 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>> Help/Unsubscribe/Update your Subscription:
>>> https://lists.apple.com/mailman/options/webobjects-dev/lists%40thetimmy.com
>>> 
>>> This email sent to li...@thetimmy.com
>> 
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-16 Thread Jesse Tayler

I’d like to add a simple test / demo app or at least a page to show things 
working

I see Movies.woa is no longer working?

I figured there would be something with migrations that could just run and load 
a basic model?

Anyone have suggestions how I should set that up?





> On Oct 15, 2018, at 10:26 PM, Tim Worman  wrote:
> 
> Yes, for sure.
> 
>> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky  wrote:
>> 
>> Jesse,
>> 
>> of course!!!
>> 
>> 
>> Ted
>> 
>> 
>> 
>>> On Oct 15, 2018, at 2:04 PM, Jesse Tayler  wrote:
>>> 
>>> Hi All
>>> 
>>> Anyone interested in modern UI kits like Bootstrap & Shards with WO?
>>> 
>>> Robert Hanna and I, have started a very simple framework migrating 
>>> Bootstrap stuff out of an app. Stuff people might find really useful 
>>> —Beautiful table-free list-views, fantastic looking forms with all modern 
>>> input tagging, sliders and date pickers that all support modern inline 
>>> icons (Material and FontAwesome) plus random things like alerts nav bars 
>>> etc.
>>> 
>>> Read along down this page to see UI examples
>>> 
>>> https://designrevision.com/demo/shards/
>>> 
>>> One D2W rule sets up a "Card" with a dictionary that configures any of the 
>>> many different options. Display a top or bottom image, have a button, make 
>>> the button square, outlined or primary-btn styled etc. Add a footer, body, 
>>> title… The rules include all the keys you'll find in Bootstrap/Shards css 
>>> tags as part of a D2W configuration.
>>> 
>>> 
>>> You can have crazy cool class tags: 
>>> 
>>> objectCardColumnClass = "col-sm-6 col-md col-lg-3 pb-4”. 
>>> 
>>> Which makes a dynamic grid that displays on tiny or giant screens.
>>> 
>>> https://designrevision.com/docs/shards/cards.html
>>> 
>>> This one rule here sets up a card and configures each option you see in the 
>>> attached:
>>> 
>>> cardSectionsContents =  
>>> {
>>>  "card-img-top" = "object.imageURL"; 
>>>  "card-link" = "object.publicURLString"; 
>>>  "card-text" = "object.title"; 
>>>  "card-title" = "object.venue.title"; 
>>>  "cardLInkTitle" = "Tell me more "; 
>>>  "cardLinkClass" = "btn btn-primary";
>>> }
>>> 
>>> 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>>> Help/Unsubscribe/Update your Subscription:
>>> https://lists.apple.com/mailman/options/webobjects-dev/tedpet5%40yahoo.com
>>> 
>>> This email sent to tedp...@yahoo.com
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/webobjects-dev/lists%40thetimmy.com
>> 
>> This email sent to li...@thetimmy.com
> 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-15 Thread Tim Worman
Yes, for sure.

> On Oct 15, 2018, at 1:41 PM, Theodore Petrosky  wrote:
> 
> Jesse,
> 
> of course!!!
> 
> 
> Ted
> 
> 
> 
>> On Oct 15, 2018, at 2:04 PM, Jesse Tayler  wrote:
>> 
>> Hi All
>> 
>> Anyone interested in modern UI kits like Bootstrap & Shards with WO?
>> 
>> Robert Hanna and I, have started a very simple framework migrating Bootstrap 
>> stuff out of an app. Stuff people might find really useful —Beautiful 
>> table-free list-views, fantastic looking forms with all modern input 
>> tagging, sliders and date pickers that all support modern inline icons 
>> (Material and FontAwesome) plus random things like alerts nav bars etc.
>> 
>> Read along down this page to see UI examples
>> 
>> https://designrevision.com/demo/shards/
>> 
>> One D2W rule sets up a "Card" with a dictionary that configures any of the 
>> many different options. Display a top or bottom image, have a button, make 
>> the button square, outlined or primary-btn styled etc. Add a footer, body, 
>> title… The rules include all the keys you'll find in Bootstrap/Shards css 
>> tags as part of a D2W configuration.
>> 
>> 
>> You can have crazy cool class tags: 
>> 
>>  objectCardColumnClass = "col-sm-6 col-md col-lg-3 pb-4”. 
>> 
>> Which makes a dynamic grid that displays on tiny or giant screens.
>> 
>> https://designrevision.com/docs/shards/cards.html
>> 
>> This one rule here sets up a card and configures each option you see in the 
>> attached:
>> 
>> cardSectionsContents =  
>> {
>>   "card-img-top" = "object.imageURL"; 
>>   "card-link" = "object.publicURLString"; 
>>   "card-text" = "object.title"; 
>>   "card-title" = "object.venue.title"; 
>>   "cardLInkTitle" = "Tell me more "; 
>>   "cardLinkClass" = "btn btn-primary";
>> }
>> 
>> 
>> ___
>> Do not post admin requests to the list. They will be ignored.
>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
>> Help/Unsubscribe/Update your Subscription:
>> https://lists.apple.com/mailman/options/webobjects-dev/tedpet5%40yahoo.com
>> 
>> This email sent to tedp...@yahoo.com
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/webobjects-dev/lists%40thetimmy.com
> 
> This email sent to li...@thetimmy.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-15 Thread Theodore Petrosky
Jesse,

of course!!!


Ted



> On Oct 15, 2018, at 2:04 PM, Jesse Tayler  wrote:
> 
> Hi All
> 
> Anyone interested in modern UI kits like Bootstrap & Shards with WO?
> 
> Robert Hanna and I, have started a very simple framework migrating Bootstrap 
> stuff out of an app. Stuff people might find really useful —Beautiful 
> table-free list-views, fantastic looking forms with all modern input tagging, 
> sliders and date pickers that all support modern inline icons (Material and 
> FontAwesome) plus random things like alerts nav bars etc.
> 
> Read along down this page to see UI examples
> 
> https://designrevision.com/demo/shards/ 
> <https://designrevision.com/demo/shards/>
> 
> One D2W rule sets up a "Card" with a dictionary that configures any of the 
> many different options. Display a top or bottom image, have a button, make 
> the button square, outlined or primary-btn styled etc. Add a footer, body, 
> title… The rules include all the keys you'll find in Bootstrap/Shards css 
> tags as part of a D2W configuration.
> 
> 
> You can have crazy cool class tags: 
> 
>   objectCardColumnClass = "col-sm-6 col-md col-lg-3 pb-4”. 
> 
> Which makes a dynamic grid that displays on tiny or giant screens.
> 
> https://designrevision.com/docs/shards/cards.html 
> <https://designrevision.com/docs/shards/cards.html>
> 
> This one rule here sets up a card and configures each option you see in the 
> attached:
> 
> cardSectionsContents =  
> {
>   "card-img-top" = "object.imageURL"; 
>   "card-link" = "object.publicURLString"; 
>   "card-text" = "object.title"; 
>   "card-title" = "object.venue.title"; 
>   "cardLInkTitle" = "Tell me more "; 
>   "cardLinkClass" = "btn btn-primary";
> }
> 
> 
> ___
> Do not post admin requests to the list. They will be ignored.
> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
> Help/Unsubscribe/Update your Subscription:
> https://lists.apple.com/mailman/options/webobjects-dev/tedpet5%40yahoo.com
> 
> This email sent to tedp...@yahoo.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Interested in Modern UI Kits, like Bootstrap?

2018-10-15 Thread Jesse Tayler
Hi All

Anyone interested in modern UI kits like Bootstrap & Shards with WO?

Robert Hanna and I, have started a very simple framework migrating Bootstrap 
stuff out of an app. Stuff people might find really useful —Beautiful 
table-free list-views, fantastic looking forms with all modern input tagging, 
sliders and date pickers that all support modern inline icons (Material and 
FontAwesome) plus random things like alerts nav bars etc.

Read along down this page to see UI examples

https://designrevision.com/demo/shards/ 
<https://designrevision.com/demo/shards/>

One D2W rule sets up a "Card" with a dictionary that configures any of the many 
different options. Display a top or bottom image, have a button, make the 
button square, outlined or primary-btn styled etc. Add a footer, body, title… 
The rules include all the keys you'll find in Bootstrap/Shards css tags as part 
of a D2W configuration.


You can have crazy cool class tags: 

objectCardColumnClass = "col-sm-6 col-md col-lg-3 pb-4”. 

Which makes a dynamic grid that displays on tiny or giant screens.

https://designrevision.com/docs/shards/cards.html 
<https://designrevision.com/docs/shards/cards.html>

This one rule here sets up a card and configures each option you see in the 
attached:

cardSectionsContents =  
{
  "card-img-top" = "object.imageURL"; 
  "card-link" = "object.publicURLString"; 
  "card-text" = "object.title"; 
  "card-title" = "object.venue.title"; 
  "cardLInkTitle" = "Tell me more "; 
  "cardLinkClass" = "btn btn-primary";
}
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com