Importing an application from outside WebVelocity

classic Classic list List threaded Threaded
4 messages Options
squeakman squeakman
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Importing an application from outside WebVelocity

Hi,

I have an app that runs under WV and Seaside and I would like to
import it to WebVelocity.  How does one go about doing that?

Thanks,
Frank

--
You received this message because you are subscribed to the Google Groups "WebVelocity" group.
To post to this group, send email to [hidden email].
To unsubscribe from this group, send email to [hidden email].
For more options, visit this group at http://groups.google.com/group/webvelocity?hl=en.

Michael Lucas-Smith-2 Michael Lucas-Smith-2
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Importing an application from outside WebVelocity

You add a property to the package #application which is a boolean of true. WebVelocity will then see it as an application it can load from store. Otherwise, you can make parcels and put them in the autoload directory.

On Apr 1, 2011, at 1:25 PM, Frank Lynch wrote:

> Hi,
>
> I have an app that runs under WV and Seaside and I would like to
> import it to WebVelocity.  How does one go about doing that?
>
> Thanks,
> Frank
>
> --
> You received this message because you are subscribed to the Google Groups "WebVelocity" group.
> To post to this group, send email to [hidden email].
> To unsubscribe from this group, send email to [hidden email].
> For more options, visit this group at http://groups.google.com/group/webvelocity?hl=en.
>

--
You received this message because you are subscribed to the Google Groups "WebVelocity" group.
To post to this group, send email to [hidden email].
To unsubscribe from this group, send email to [hidden email].
For more options, visit this group at http://groups.google.com/group/webvelocity?hl=en.

squeakman squeakman
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Importing an application from outside WebVelocity

Can you tell me how does one add a property to the package
#application?  I browsed around in the code but it is not obvious to
me.

Thanks,
Frank

On Apr 1, 6:05 pm, Michael Lucas-Smith <[hidden email]>
wrote:

> You add a property to the package #application which is a boolean of true. WebVelocity will then see it as an application it can load from store. Otherwise, you can make parcels and put them in the autoload directory.
>
> On Apr 1, 2011, at 1:25 PM, Frank Lynch wrote:
>
>
>
>
>
>
>
> > Hi,
>
> > I have an app that runs under WV and Seaside and I would like to
> > import it to WebVelocity.  How does one go about doing that?
>
> > Thanks,
> > Frank
>
> > --
> > You received this message because you are subscribed to the Google Groups "WebVelocity" group.
> > To post to this group, send email to [hidden email].
> > To unsubscribe from this group, send email to [hidden email].
> > For more options, visit this group athttp://groups.google.com/group/webvelocity?hl=en.

--
You received this message because you are subscribed to the Google Groups "WebVelocity" group.
To post to this group, send email to [hidden email].
To unsubscribe from this group, send email to [hidden email].
For more options, visit this group at http://groups.google.com/group/webvelocity?hl=en.

Michael Lucas-Smith-2 Michael Lucas-Smith-2
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Importing an application from outside WebVelocity

(Store.Registry packageNamed: 'MyPackage') propertyAt: #application put: true.

Michael

On Apr 3, 2011, at 1:16 PM, Frank Lynch wrote:

> Can you tell me how does one add a property to the package
> #application?  I browsed around in the code but it is not obvious to
> me.
>
> Thanks,
> Frank
>
> On Apr 1, 6:05 pm, Michael Lucas-Smith <[hidden email]>
> wrote:
>> You add a property to the package #application which is a boolean of true. WebVelocity will then see it as an application it can load from store. Otherwise, you can make parcels and put them in the autoload directory.
>>
>> On Apr 1, 2011, at 1:25 PM, Frank Lynch wrote:
>>
>>
>>
>>
>>
>>
>>
>>> Hi,
>>
>>> I have an app that runs under WV and Seaside and I would like to
>>> import it to WebVelocity.  How does one go about doing that?
>>
>>> Thanks,
>>> Frank
>>
>>> --
>>> You received this message because you are subscribed to the Google Groups "WebVelocity" group.
>>> To post to this group, send email to [hidden email].
>>> To unsubscribe from this group, send email to [hidden email].
>>> For more options, visit this group athttp://groups.google.com/group/webvelocity?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups "WebVelocity" group.
> To post to this group, send email to [hidden email].
> To unsubscribe from this group, send email to [hidden email].
> For more options, visit this group at http://groups.google.com/group/webvelocity?hl=en.
>

--
You received this message because you are subscribed to the Google Groups "WebVelocity" group.
To post to this group, send email to [hidden email].
To unsubscribe from this group, send email to [hidden email].
For more options, visit this group at http://groups.google.com/group/webvelocity?hl=en.

Loading...