MyFileLibrary not appearing ../config->files->Libraries

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

MyFileLibrary not appearing ../config->files->Libraries

Sanjay Minni
Using Pharo8 with current seaside

a MyFileLibrary i just created is not appearing in the Libraries list at
config->files
(I have saved / exited / resrtarted refreshed ...

WAFileLibrary subclass: #MyFileLibrary

what am i is missing
(Do I have to attach this library to any app registered with seaside, say
MySeasideApp ... how ?)





-----
cheers,
Sanjay
--
Sent from: http://forum.world.st/Seaside-General-f86180.html
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
cheers,
Sanjay
Reply | Threaded
Open this post in threaded view
|

Re: MyFileLibrary not appearing ../config->files->Libraries

Sven Van Caekenberghe-2
Hi,

Did you do an

  app addLibrary: MyFileLibrary

when registering ?

Sven

> On 29 Mar 2020, at 06:55, Sanjay Minni <[hidden email]> wrote:
>
> Using Pharo8 with current seaside
>
> a MyFileLibrary i just created is not appearing in the Libraries list at
> config->files
> (I have saved / exited / resrtarted refreshed ...
>
> WAFileLibrary subclass: #MyFileLibrary
>
> what am i is missing
> (Do I have to attach this library to any app registered with seaside, say
> MySeasideApp ... how ?)
>
>
>
>
>
> -----
> cheers,
> Sanjay
> --
> Sent from: http://forum.world.st/Seaside-General-f86180.html
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: MyFileLibrary not appearing ../config->files->Libraries

Sanjay Minni
yes, I did

in /Config->app->General-Libraries
  MyFileLibrary appears
but it does not appear in /config->Files->Libraries

I want to add files thru [configure] in Files-Libraries by selecting
MyFileLibrary then configure->add file

thanks


Sven Van Caekenberghe-2 wrote

> Hi,
>
> Did you do an
>
>   app addLibrary: MyFileLibrary
>
> when registering ?
>
> Sven
>
>> On 29 Mar 2020, at 06:55, Sanjay Minni &lt;

> sm@

> &gt; wrote:
>>
>> Using Pharo8 with current seaside
>>
>> a MyFileLibrary i just created is not appearing in the Libraries list at
>> config->files
>> (I have saved / exited / resrtarted refreshed ...
>>
>> WAFileLibrary subclass: #MyFileLibrary
>>
>> what am i is missing
>> (Do I have to attach this library to any app registered with seaside, say
>> MySeasideApp ... how ?)
>>
>>
>>
>>
>>
>> -----
>> cheers,
>> Sanjay
>> --
>> Sent from: http://forum.world.st/Seaside-General-f86180.html
>> _______________________________________________
>> seaside mailing list
>>

> seaside@.squeakfoundation

>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
> _______________________________________________
> seaside mailing list

> seaside@.squeakfoundation

> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside





-----
cheers,
Sanjay
--
Sent from: http://forum.world.st/Seaside-General-f86180.html
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
cheers,
Sanjay
Reply | Threaded
Open this post in threaded view
|

Re: MyFileLibrary not appearing ../config->files->Libraries

Sanjay Minni
my code is:

MyApp class>>initialize
        | app |
        app := WAAdmin register: self  asApplicationAt: 'myapp'.
        app addLibrary: MyFileLibrary .

I removed the app thru config and ran
   MyApp initialize
to re-register, which it did and then as below ...


Sanjay Minni wrote

> yes, I did
>
> in /Config->app->General-Libraries
>   MyFileLibrary appears
> but it does not appear in /config->Files->Libraries
>
> I want to add files thru [configure] in Files-Libraries by selecting
> MyFileLibrary then configure->add file
>
> thanks
>
>
> Sven Van Caekenberghe-2 wrote
>> Hi,
>>
>> Did you do an
>>
>>   app addLibrary: MyFileLibrary
>>
>> when registering ?
>>
>> Sven
>>
>>> On 29 Mar 2020, at 06:55, Sanjay Minni &lt;
>
>> sm@
>
>> &gt; wrote:
>>>
>>> Using Pharo8 with current seaside
>>>
>>> a MyFileLibrary i just created is not appearing in the Libraries list at
>>> config->files
>>> (I have saved / exited / resrtarted refreshed ...
>>>
>>> WAFileLibrary subclass: #MyFileLibrary
>>>
>>> what am i is missing
>>> (Do I have to attach this library to any app registered with seaside,
>>> say
>>> MySeasideApp ... how ?)
>>>
>>>
>>>
>>>
>>>
>>> -----
>>> cheers,
>>> Sanjay
>>> --
>>> Sent from: http://forum.world.st/Seaside-General-f86180.html
>>> _______________________________________________
>>> seaside mailing list
>>>
>
>> seaside@.squeakfoundation
>
>>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>>
>> _______________________________________________
>> seaside mailing list
>
>> seaside@.squeakfoundation
>
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
> -----
> cheers,
> Sanjay
> --
> Sent from: http://forum.world.st/Seaside-General-f86180.html
> _______________________________________________
> seaside mailing list

> seaside@.squeakfoundation

> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside





-----
cheers,
Sanjay
--
Sent from: http://forum.world.st/Seaside-General-f86180.html
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
cheers,
Sanjay
Reply | Threaded
Open this post in threaded view
|

Re: MyFileLibrary not appearing ../config->files->Libraries

Esteban A. Maringolo
Hi Sanjay,

Is your library in the collection returned by `WAAbstractFileLibrary libraries`?

Regards,


Esteban A. Maringolo

On Sun, Mar 29, 2020 at 7:47 AM Sanjay Minni <[hidden email]> wrote:

>
> my code is:
>
> MyApp class>>initialize
>         | app |
>         app := WAAdmin register: self  asApplicationAt: 'myapp'.
>         app addLibrary: MyFileLibrary .
>
> I removed the app thru config and ran
>    MyApp initialize
> to re-register, which it did and then as below ...
>
>
> Sanjay Minni wrote
> > yes, I did
> >
> > in /Config->app->General-Libraries
> >   MyFileLibrary appears
> > but it does not appear in /config->Files->Libraries
> >
> > I want to add files thru [configure] in Files-Libraries by selecting
> > MyFileLibrary then configure->add file
> >
> > thanks
> >
> >
> > Sven Van Caekenberghe-2 wrote
> >> Hi,
> >>
> >> Did you do an
> >>
> >>   app addLibrary: MyFileLibrary
> >>
> >> when registering ?
> >>
> >> Sven
> >>
> >>> On 29 Mar 2020, at 06:55, Sanjay Minni &lt;
> >
> >> sm@
> >
> >> &gt; wrote:
> >>>
> >>> Using Pharo8 with current seaside
> >>>
> >>> a MyFileLibrary i just created is not appearing in the Libraries list at
> >>> config->files
> >>> (I have saved / exited / resrtarted refreshed ...
> >>>
> >>> WAFileLibrary subclass: #MyFileLibrary
> >>>
> >>> what am i is missing
> >>> (Do I have to attach this library to any app registered with seaside,
> >>> say
> >>> MySeasideApp ... how ?)
> >>>
> >>>
> >>>
> >>>
> >>>
> >>> -----
> >>> cheers,
> >>> Sanjay
> >>> --
> >>> Sent from: http://forum.world.st/Seaside-General-f86180.html
> >>> _______________________________________________
> >>> seaside mailing list
> >>>
> >
> >> seaside@.squeakfoundation
> >
> >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >>
> >> _______________________________________________
> >> seaside mailing list
> >
> >> seaside@.squeakfoundation
> >
> >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >
> >
> > -----
> > cheers,
> > Sanjay
> > --
> > Sent from: http://forum.world.st/Seaside-General-f86180.html
> > _______________________________________________
> > seaside mailing list
>
> > seaside@.squeakfoundation
>
> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
>
>
>
> -----
> cheers,
> Sanjay
> --
> Sent from: http://forum.world.st/Seaside-General-f86180.html
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: MyFileLibrary not appearing ../config->files->Libraries

Sanjay Minni
Hi Esteban,

it is  (in the collection returned by `WAAbstractFileLibrary libraries` ) 
---
Sanjay Minni
+91-9900-902902


On Sun, 29 Mar 2020 at 20:28, Esteban Maringolo <[hidden email]> wrote:
Hi Sanjay,

Is your library in the collection returned by `WAAbstractFileLibrary libraries`?

Regards,


Esteban A. Maringolo

On Sun, Mar 29, 2020 at 7:47 AM Sanjay Minni <[hidden email]> wrote:
>
> my code is:
>
> MyApp class>>initialize
>         | app |
>         app := WAAdmin register: self  asApplicationAt: 'myapp'.
>         app addLibrary: MyFileLibrary .
>
> I removed the app thru config and ran
>    MyApp initialize
> to re-register, which it did and then as below ...
>
>
> Sanjay Minni wrote
> > yes, I did
> >
> > in /Config->app->General-Libraries
> >   MyFileLibrary appears
> > but it does not appear in /config->Files->Libraries
> >
> > I want to add files thru [configure] in Files-Libraries by selecting
> > MyFileLibrary then configure->add file
> >
> > thanks
> >
> >
> > Sven Van Caekenberghe-2 wrote
> >> Hi,
> >>
> >> Did you do an
> >>
> >>   app addLibrary: MyFileLibrary
> >>
> >> when registering ?
> >>
> >> Sven
> >>
> >>> On 29 Mar 2020, at 06:55, Sanjay Minni &lt;
> >
> >> sm@
> >
> >> &gt; wrote:
> >>>
> >>> Using Pharo8 with current seaside
> >>>
> >>> a MyFileLibrary i just created is not appearing in the Libraries list at
> >>> config->files
> >>> (I have saved / exited / resrtarted refreshed ...
> >>>
> >>> WAFileLibrary subclass: #MyFileLibrary
> >>>
> >>> what am i is missing
> >>> (Do I have to attach this library to any app registered with seaside,
> >>> say
> >>> MySeasideApp ... how ?)
> >>>
> >>>
> >>>
> >>>
> >>>
> >>> -----
> >>> cheers,
> >>> Sanjay
> >>> --
> >>> Sent from: http://forum.world.st/Seaside-General-f86180.html
> >>> _______________________________________________
> >>> seaside mailing list
> >>>
> >
> >> seaside@.squeakfoundation
> >
> >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >>
> >> _______________________________________________
> >> seaside mailing list
> >
> >> seaside@.squeakfoundation
> >
> >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >
> >
> > -----
> > cheers,
> > Sanjay
> > --
> > Sent from: http://forum.world.st/Seaside-General-f86180.html
> > _______________________________________________
> > seaside mailing list
>
> > seaside@.squeakfoundation
>
> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
>
>
>
>
> -----
> cheers,
> Sanjay
> --
> Sent from: http://forum.world.st/Seaside-General-f86180.html
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
cheers,
Sanjay
Reply | Threaded
Open this post in threaded view
|

Re: MyFileLibrary not appearing ../config->files->Libraries

Sanjay Minni
ok this is resolved

i started with a fresh image and things worked just fine

maybe something was incomplete in the earlier image (willow-playground)

sorry for the bother but the whole thing was extremely odd


Sanjay Minni wrote
> Hi Esteban,
>
> it is  (in the collection returned by `WAAbstractFileLibrary libraries` )
> ---
> Sanjay Minni
> +91-9900-902902
>
>
> On Sun, 29 Mar 2020 at 20:28, Esteban Maringolo &lt;

> emaringolo@

> &gt;
> wrote:
>
>> Hi Sanjay,
>>
>> Is your library in the collection returned by `WAAbstractFileLibrary
>> libraries`?
>>
>> Regards,
>>
>>
>> Esteban A. Maringolo
>>
>> On Sun, Mar 29, 2020 at 7:47 AM Sanjay Minni &lt;

> sm@

> &gt; wrote:
>> >
>> > my code is:
>> >
>> > MyApp class>>initialize
>> >         | app |
>> >         app := WAAdmin register: self  asApplicationAt: 'myapp'.
>> >         app addLibrary: MyFileLibrary .
>> >
>> > I removed the app thru config and ran
>> >    MyApp initialize
>> > to re-register, which it did and then as below ...
>> >
>> >
>> > Sanjay Minni wrote
>> > > yes, I did
>> > >
>> > > in /Config->app->General-Libraries
>> > >   MyFileLibrary appears
>> > > but it does not appear in /config->Files->Libraries
>> > >
>> > > I want to add files thru [configure] in Files-Libraries by selecting
>> > > MyFileLibrary then configure->add file
>> > >
>> > > thanks
>> > >
>> > >
>> > > Sven Van Caekenberghe-2 wrote
>> > >> Hi,
>> > >>
>> > >> Did you do an
>> > >>
>> > >>   app addLibrary: MyFileLibrary
>> > >>
>> > >> when registering ?
>> > >>
>> > >> Sven
>> > >>
>> > >>> On 29 Mar 2020, at 06:55, Sanjay Minni &lt;
>> > >
>> > >> sm@
>> > >
>> > >> &gt; wrote:
>> > >>>
>> > >>> Using Pharo8 with current seaside
>> > >>>
>> > >>> a MyFileLibrary i just created is not appearing in the Libraries
>> list at
>> > >>> config->files
>> > >>> (I have saved / exited / resrtarted refreshed ...
>> > >>>
>> > >>> WAFileLibrary subclass: #MyFileLibrary
>> > >>>
>> > >>> what am i is missing
>> > >>> (Do I have to attach this library to any app registered with
>> seaside,
>> > >>> say
>> > >>> MySeasideApp ... how ?)
>> > >>>
>> > >>>
>> > >>>
>> > >>>
>> > >>>
>> > >>> -----
>> > >>> cheers,
>> > >>> Sanjay
>> > >>> --
>> > >>> Sent from: http://forum.world.st/Seaside-General-f86180.html
>> > >>> _______________________________________________
>> > >>> seaside mailing list
>> > >>>
>> > >
>> > >> seaside@.squeakfoundation
>> > >
>> > >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> > >>
>> > >> _______________________________________________
>> > >> seaside mailing list
>> > >
>> > >> seaside@.squeakfoundation
>> > >
>> > >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> > >
>> > >
>> > > -----
>> > > cheers,
>> > > Sanjay
>> > > --
>> > > Sent from: http://forum.world.st/Seaside-General-f86180.html
>> > > _______________________________________________
>> > > seaside mailing list
>> >
>> > > seaside@.squeakfoundation
>> >
>> > > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> >
>> >
>> >
>> >
>> >
>> > -----
>> > cheers,
>> > Sanjay
>> > --
>> > Sent from: http://forum.world.st/Seaside-General-f86180.html
>> > _______________________________________________
>> > seaside mailing list
>> >

> seaside@.squeakfoundation

>> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>> _______________________________________________
>> seaside mailing list
>>

> seaside@.squeakfoundation

>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>>
>
> _______________________________________________
> seaside mailing list

> seaside@.squeakfoundation

> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside





-----
cheers,
Sanjay
--
Sent from: http://forum.world.st/Seaside-General-f86180.html
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
cheers,
Sanjay