Re: [Gnoga-list] Sliding content

2015-04-08 Thread tony gair
I just discovered Load_JQueryUI. All working thank you!

On Wed, Apr 8, 2015 at 8:41 PM, tony gair  wrote:

> I've been trying to use that sliding effect on a gnoga app and nothing
> seems to happen, do you need an html page to do it on or something like
> that?
>
> On Wed, Apr 8, 2015 at 4:34 PM, Rabbi David Botton 
> wrote:
>
>> I'll see what I can do
>>
>> On Wed, Apr 8, 2015 at 11:12 AM tony gair  wrote:
>>
>>> oh yes what I meant to say was I am looking for the extra files that the
>>> gnoga site source uses
>>>
>>> On Wed, Apr 8, 2015 at 4:11 PM, tony gair  wrote:
>>>
 I've done that. I promise not to operate a copy of the gnoga site btw!
 ha! its all for educational purposes.

 I'm finding the code hard to follow because of my ignorance on classes
 and inheritence in ada, is there a tutorial somewhere on this?

>>>
 On Wed, Apr 8, 2015 at 2:41 PM, Rabbi David Botton 
 wrote:

> As for the sources, I'll see if I can put something together, for now
> just copy and paste out.
>
> On Wed, Apr 8, 2015 at 9:40 AM Rabbi David Botton 
> wrote:
>
>> Make sure to look at test/jdemo.adb there I test almost every JQuery
>> UI control and there are you can see other uses of effects, etc.
>>
>> On Wed, Apr 8, 2015 at 8:25 AM tony gair 
>> wrote:
>>
>>> Is there a downloadable version of this source? This is so I can
>>> follow things through with an editor, I'm finding it difficult to follow
>>> through the provided source visual tool?
>>>
>>> On Wed, Apr 8, 2015 at 10:23 AM, tony gair 
>>> wrote:
>>>
 If anyone is interestedin Q2 , take a look at https://jqueryui.com/
 effect/

 On Tue, Apr 7, 2015 at 9:16 PM, tony gair 
 wrote:

> Hi David,
>2 questions about this!
> 1) how did you rig the buttons on the top to operate
> independently of the views
> 2) what other effects are there. is there a doc on this
> thanks
> Tony
>
> On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton <
> da...@botton.com> wrote:
>
>> In Gnoga_Web.Controller the key procedure is this:
>>
>>  procedure New_Content_View
>>  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
>>is
>>   App : App_Access := App_Access (New_View.Connection_Data);
>>begin
>>   if App.Current_View /= null then
>>  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
>>(Element=> App.Current_View.all,
>> Effect_Name=> "slide");
>>
>>  if App.Current_View.Dynamic then
>> App.Current_View.Free;
>>  end if;
>>   end if;
>>
>>   App.Current_View := New_View;
>>
>>   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
>> (Element=> App.Current_View.all,
>>  Effect_Name=> "slide");
>>end New_Content_View;
>>
>>
>> On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton <
>> da...@botton.com> wrote:
>>
>>> Sorry I didn't restart the source app on last reboot. Is up now.
>>> Try again.
>>>
>>>
>>> David Botton
>>>
>>>
>>> On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley <
>>> olivier.hen...@gmail.com> wrote:
>>>
 Where am I supposed to find this source code?

 - Did not find in framework sources.
 - I tried the website link but it does not work:
 www.gnoga.com/source which redirects to
 www.gnoga.com:8889/source

 Thx,

 olivier

 On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton <
 da...@botton.com> wrote:

> Look at the code for the Gnoga web. It uses the jQueryUI
> packages in Gnoga.
> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley <
> olivier.hen...@gmail.com> wrote:
>
>> Hey,
>>
>> I was wondering what is the strategy if I want to code a
>> sliding panel transitioning from "outside" the browser window to 
>> some
>> inside placement? Something similar to the Gnoga welcome page.
>>
>> Thx,
>>
>> olivier
>> 
>> --
>> Dive into the World of Parallel Programming The Go Parallel
>> Website, sponsored
>> by Intel and developed in partnership with Slashdot Media, is
>> your hub for all
>> things 

Re: [Gnoga-list] Sliding content

2015-04-08 Thread tony gair
I've been trying to use that sliding effect on a gnoga app and nothing
seems to happen, do you need an html page to do it on or something like
that?

On Wed, Apr 8, 2015 at 4:34 PM, Rabbi David Botton  wrote:

> I'll see what I can do
>
> On Wed, Apr 8, 2015 at 11:12 AM tony gair  wrote:
>
>> oh yes what I meant to say was I am looking for the extra files that the
>> gnoga site source uses
>>
>> On Wed, Apr 8, 2015 at 4:11 PM, tony gair  wrote:
>>
>>> I've done that. I promise not to operate a copy of the gnoga site btw!
>>> ha! its all for educational purposes.
>>>
>>> I'm finding the code hard to follow because of my ignorance on classes
>>> and inheritence in ada, is there a tutorial somewhere on this?
>>>
>>
>>> On Wed, Apr 8, 2015 at 2:41 PM, Rabbi David Botton 
>>> wrote:
>>>
 As for the sources, I'll see if I can put something together, for now
 just copy and paste out.

 On Wed, Apr 8, 2015 at 9:40 AM Rabbi David Botton 
 wrote:

> Make sure to look at test/jdemo.adb there I test almost every JQuery
> UI control and there are you can see other uses of effects, etc.
>
> On Wed, Apr 8, 2015 at 8:25 AM tony gair 
> wrote:
>
>> Is there a downloadable version of this source? This is so I can
>> follow things through with an editor, I'm finding it difficult to follow
>> through the provided source visual tool?
>>
>> On Wed, Apr 8, 2015 at 10:23 AM, tony gair 
>> wrote:
>>
>>> If anyone is interestedin Q2 , take a look at https://jqueryui.com/
>>> effect/
>>>
>>> On Tue, Apr 7, 2015 at 9:16 PM, tony gair 
>>> wrote:
>>>
 Hi David,
2 questions about this!
 1) how did you rig the buttons on the top to operate
 independently of the views
 2) what other effects are there. is there a doc on this
 thanks
 Tony

 On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton <
 da...@botton.com> wrote:

> In Gnoga_Web.Controller the key procedure is this:
>
>  procedure New_Content_View
>  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
>is
>   App : App_Access := App_Access (New_View.Connection_Data);
>begin
>   if App.Current_View /= null then
>  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
>(Element=> App.Current_View.all,
> Effect_Name=> "slide");
>
>  if App.Current_View.Dynamic then
> App.Current_View.Free;
>  end if;
>   end if;
>
>   App.Current_View := New_View;
>
>   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
> (Element=> App.Current_View.all,
>  Effect_Name=> "slide");
>end New_Content_View;
>
>
> On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton <
> da...@botton.com> wrote:
>
>> Sorry I didn't restart the source app on last reboot. Is up now.
>> Try again.
>>
>>
>> David Botton
>>
>>
>> On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley <
>> olivier.hen...@gmail.com> wrote:
>>
>>> Where am I supposed to find this source code?
>>>
>>> - Did not find in framework sources.
>>> - I tried the website link but it does not work:
>>> www.gnoga.com/source which redirects to
>>> www.gnoga.com:8889/source
>>>
>>> Thx,
>>>
>>> olivier
>>>
>>> On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton <
>>> da...@botton.com> wrote:
>>>
 Look at the code for the Gnoga web. It uses the jQueryUI
 packages in Gnoga.
 On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley <
 olivier.hen...@gmail.com> wrote:

> Hey,
>
> I was wondering what is the strategy if I want to code a
> sliding panel transitioning from "outside" the browser window to 
> some
> inside placement? Something similar to the Gnoga welcome page.
>
> Thx,
>
> olivier
> 
> --
> Dive into the World of Parallel Programming The Go Parallel
> Website, sponsored
> by Intel and developed in partnership with Slashdot Media, is
> your hub for all
> things parallel software development, from weekly thought
> leadership blogs to
> news, videos, case studies, tutorials and more. Take a look
> and join the
> conversation now. http://goparallel.sourceforge.n

Re: [Gnoga-list] Sliding content

2015-04-08 Thread Rabbi David Botton
I'll see what I can do
On Wed, Apr 8, 2015 at 11:12 AM tony gair  wrote:

> oh yes what I meant to say was I am looking for the extra files that the
> gnoga site source uses
>
> On Wed, Apr 8, 2015 at 4:11 PM, tony gair  wrote:
>
>> I've done that. I promise not to operate a copy of the gnoga site btw!
>> ha! its all for educational purposes.
>>
>> I'm finding the code hard to follow because of my ignorance on classes
>> and inheritence in ada, is there a tutorial somewhere on this?
>>
>
>> On Wed, Apr 8, 2015 at 2:41 PM, Rabbi David Botton 
>> wrote:
>>
>>> As for the sources, I'll see if I can put something together, for now
>>> just copy and paste out.
>>>
>>> On Wed, Apr 8, 2015 at 9:40 AM Rabbi David Botton 
>>> wrote:
>>>
 Make sure to look at test/jdemo.adb there I test almost every JQuery UI
 control and there are you can see other uses of effects, etc.

 On Wed, Apr 8, 2015 at 8:25 AM tony gair  wrote:

> Is there a downloadable version of this source? This is so I can
> follow things through with an editor, I'm finding it difficult to follow
> through the provided source visual tool?
>
> On Wed, Apr 8, 2015 at 10:23 AM, tony gair 
> wrote:
>
>> If anyone is interestedin Q2 , take a look at https://jqueryui.com/
>> effect/
>>
>> On Tue, Apr 7, 2015 at 9:16 PM, tony gair 
>> wrote:
>>
>>> Hi David,
>>>2 questions about this!
>>> 1) how did you rig the buttons on the top to operate
>>> independently of the views
>>> 2) what other effects are there. is there a doc on this
>>> thanks
>>> Tony
>>>
>>> On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton <
>>> da...@botton.com> wrote:
>>>
 In Gnoga_Web.Controller the key procedure is this:

  procedure New_Content_View
  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
is
   App : App_Access := App_Access (New_View.Connection_Data);
begin
   if App.Current_View /= null then
  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
(Element=> App.Current_View.all,
 Effect_Name=> "slide");

  if App.Current_View.Dynamic then
 App.Current_View.Free;
  end if;
   end if;

   App.Current_View := New_View;

   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
 (Element=> App.Current_View.all,
  Effect_Name=> "slide");
end New_Content_View;


 On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton 
 wrote:

> Sorry I didn't restart the source app on last reboot. Is up now.
> Try again.
>
>
> David Botton
>
>
> On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley <
> olivier.hen...@gmail.com> wrote:
>
>> Where am I supposed to find this source code?
>>
>> - Did not find in framework sources.
>> - I tried the website link but it does not work:
>> www.gnoga.com/source which redirects to www.gnoga.com:8889/source
>>
>> Thx,
>>
>> olivier
>>
>> On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton <
>> da...@botton.com> wrote:
>>
>>> Look at the code for the Gnoga web. It uses the jQueryUI
>>> packages in Gnoga.
>>> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley <
>>> olivier.hen...@gmail.com> wrote:
>>>
 Hey,

 I was wondering what is the strategy if I want to code a
 sliding panel transitioning from "outside" the browser window to 
 some
 inside placement? Something similar to the Gnoga welcome page.

 Thx,

 olivier
 
 --
 Dive into the World of Parallel Programming The Go Parallel
 Website, sponsored
 by Intel and developed in partnership with Slashdot Media, is
 your hub for all
 things parallel software development, from weekly thought
 leadership blogs to
 news, videos, case studies, tutorials and more. Take a look and
 join the
 conversation now. http://goparallel.sourceforge.net/
 ___
 Gnoga-list mailing list
 Gnoga-list@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gnoga-list

>>>
>>
 
 --
 BPM Camp - Free Virtu

Re: [Gnoga-list] Sliding content

2015-04-08 Thread tony gair
oh yes what I meant to say was I am looking for the extra files that the
gnoga site source uses

On Wed, Apr 8, 2015 at 4:11 PM, tony gair  wrote:

> I've done that. I promise not to operate a copy of the gnoga site btw! ha!
> its all for educational purposes.
>
> I'm finding the code hard to follow because of my ignorance on classes and
> inheritence in ada, is there a tutorial somewhere on this?
>
> On Wed, Apr 8, 2015 at 2:41 PM, Rabbi David Botton 
> wrote:
>
>> As for the sources, I'll see if I can put something together, for now
>> just copy and paste out.
>>
>> On Wed, Apr 8, 2015 at 9:40 AM Rabbi David Botton 
>> wrote:
>>
>>> Make sure to look at test/jdemo.adb there I test almost every JQuery UI
>>> control and there are you can see other uses of effects, etc.
>>>
>>> On Wed, Apr 8, 2015 at 8:25 AM tony gair  wrote:
>>>
 Is there a downloadable version of this source? This is so I can follow
 things through with an editor, I'm finding it difficult to follow through
 the provided source visual tool?

 On Wed, Apr 8, 2015 at 10:23 AM, tony gair 
 wrote:

> If anyone is interestedin Q2 , take a look at https://jqueryui.com/
> effect/
>
> On Tue, Apr 7, 2015 at 9:16 PM, tony gair 
> wrote:
>
>> Hi David,
>>2 questions about this!
>> 1) how did you rig the buttons on the top to operate
>> independently of the views
>> 2) what other effects are there. is there a doc on this
>> thanks
>> Tony
>>
>> On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton > > wrote:
>>
>>> In Gnoga_Web.Controller the key procedure is this:
>>>
>>>  procedure New_Content_View
>>>  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
>>>is
>>>   App : App_Access := App_Access (New_View.Connection_Data);
>>>begin
>>>   if App.Current_View /= null then
>>>  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
>>>(Element=> App.Current_View.all,
>>> Effect_Name=> "slide");
>>>
>>>  if App.Current_View.Dynamic then
>>> App.Current_View.Free;
>>>  end if;
>>>   end if;
>>>
>>>   App.Current_View := New_View;
>>>
>>>   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
>>> (Element=> App.Current_View.all,
>>>  Effect_Name=> "slide");
>>>end New_Content_View;
>>>
>>>
>>> On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton 
>>> wrote:
>>>
 Sorry I didn't restart the source app on last reboot. Is up now.
 Try again.


 David Botton


 On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley <
 olivier.hen...@gmail.com> wrote:

> Where am I supposed to find this source code?
>
> - Did not find in framework sources.
> - I tried the website link but it does not work:
> www.gnoga.com/source which redirects to www.gnoga.com:8889/source
>
> Thx,
>
> olivier
>
> On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton <
> da...@botton.com> wrote:
>
>> Look at the code for the Gnoga web. It uses the jQueryUI packages
>> in Gnoga.
>> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley <
>> olivier.hen...@gmail.com> wrote:
>>
>>> Hey,
>>>
>>> I was wondering what is the strategy if I want to code a sliding
>>> panel transitioning from "outside" the browser window to some inside
>>> placement? Something similar to the Gnoga welcome page.
>>>
>>> Thx,
>>>
>>> olivier
>>> 
>>> --
>>> Dive into the World of Parallel Programming The Go Parallel
>>> Website, sponsored
>>> by Intel and developed in partnership with Slashdot Media, is
>>> your hub for all
>>> things parallel software development, from weekly thought
>>> leadership blogs to
>>> news, videos, case studies, tutorials and more. Take a look and
>>> join the
>>> conversation now. http://goparallel.sourceforge.net/
>>> ___
>>> Gnoga-list mailing list
>>> Gnoga-list@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>>
>>
>
>>> 
>>> --
>>> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
>>> Develop your own process in accordance with the BPMN 2 standard
>>> Learn Process modeling best practices with Bonita BPM through live
>>> exercises
>>> http://www.bonitasoft.com/be-part-

Re: [Gnoga-list] Sliding content

2015-04-08 Thread tony gair
I've done that. I promise not to operate a copy of the gnoga site btw! ha!
its all for educational purposes.

I'm finding the code hard to follow because of my ignorance on classes and
inheritence in ada, is there a tutorial somewhere on this?

On Wed, Apr 8, 2015 at 2:41 PM, Rabbi David Botton  wrote:

> As for the sources, I'll see if I can put something together, for now just
> copy and paste out.
>
> On Wed, Apr 8, 2015 at 9:40 AM Rabbi David Botton 
> wrote:
>
>> Make sure to look at test/jdemo.adb there I test almost every JQuery UI
>> control and there are you can see other uses of effects, etc.
>>
>> On Wed, Apr 8, 2015 at 8:25 AM tony gair  wrote:
>>
>>> Is there a downloadable version of this source? This is so I can follow
>>> things through with an editor, I'm finding it difficult to follow through
>>> the provided source visual tool?
>>>
>>> On Wed, Apr 8, 2015 at 10:23 AM, tony gair 
>>> wrote:
>>>
 If anyone is interestedin Q2 , take a look at https://jqueryui.com/
 effect/

 On Tue, Apr 7, 2015 at 9:16 PM, tony gair 
 wrote:

> Hi David,
>2 questions about this!
> 1) how did you rig the buttons on the top to operate independently
> of the views
> 2) what other effects are there. is there a doc on this
> thanks
> Tony
>
> On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton 
> wrote:
>
>> In Gnoga_Web.Controller the key procedure is this:
>>
>>  procedure New_Content_View
>>  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
>>is
>>   App : App_Access := App_Access (New_View.Connection_Data);
>>begin
>>   if App.Current_View /= null then
>>  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
>>(Element=> App.Current_View.all,
>> Effect_Name=> "slide");
>>
>>  if App.Current_View.Dynamic then
>> App.Current_View.Free;
>>  end if;
>>   end if;
>>
>>   App.Current_View := New_View;
>>
>>   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
>> (Element=> App.Current_View.all,
>>  Effect_Name=> "slide");
>>end New_Content_View;
>>
>>
>> On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton 
>> wrote:
>>
>>> Sorry I didn't restart the source app on last reboot. Is up now. Try
>>> again.
>>>
>>>
>>> David Botton
>>>
>>>
>>> On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley <
>>> olivier.hen...@gmail.com> wrote:
>>>
 Where am I supposed to find this source code?

 - Did not find in framework sources.
 - I tried the website link but it does not work:
 www.gnoga.com/source which redirects to www.gnoga.com:8889/source

 Thx,

 olivier

 On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton <
 da...@botton.com> wrote:

> Look at the code for the Gnoga web. It uses the jQueryUI packages
> in Gnoga.
> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley <
> olivier.hen...@gmail.com> wrote:
>
>> Hey,
>>
>> I was wondering what is the strategy if I want to code a sliding
>> panel transitioning from "outside" the browser window to some inside
>> placement? Something similar to the Gnoga welcome page.
>>
>> Thx,
>>
>> olivier
>> 
>> --
>> Dive into the World of Parallel Programming The Go Parallel
>> Website, sponsored
>> by Intel and developed in partnership with Slashdot Media, is
>> your hub for all
>> things parallel software development, from weekly thought
>> leadership blogs to
>> news, videos, case studies, tutorials and more. Take a look and
>> join the
>> conversation now. http://goparallel.sourceforge.net/
>> ___
>> Gnoga-list mailing list
>> Gnoga-list@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>
>

>> 
>> --
>> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
>> Develop your own process in accordance with the BPMN 2 standard
>> Learn Process modeling best practices with Bonita BPM through live
>> exercises
>> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
>> event?utm_
>> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_
>> campaign=VA_SF
>> ___
>> Gnoga-list mailing list
>> Gnoga-list@lists.sourceforge.net
>> https://lists.source

Re: [Gnoga-list] Sliding content

2015-04-08 Thread Rabbi David Botton
As for the sources, I'll see if I can put something together, for now just
copy and paste out.

On Wed, Apr 8, 2015 at 9:40 AM Rabbi David Botton  wrote:

> Make sure to look at test/jdemo.adb there I test almost every JQuery UI
> control and there are you can see other uses of effects, etc.
>
> On Wed, Apr 8, 2015 at 8:25 AM tony gair  wrote:
>
>> Is there a downloadable version of this source? This is so I can follow
>> things through with an editor, I'm finding it difficult to follow through
>> the provided source visual tool?
>>
>> On Wed, Apr 8, 2015 at 10:23 AM, tony gair  wrote:
>>
>>> If anyone is interestedin Q2 , take a look at https://jqueryui.com/
>>> effect/
>>>
>>> On Tue, Apr 7, 2015 at 9:16 PM, tony gair  wrote:
>>>
 Hi David,
2 questions about this!
 1) how did you rig the buttons on the top to operate independently
 of the views
 2) what other effects are there. is there a doc on this
 thanks
 Tony

 On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton 
 wrote:

> In Gnoga_Web.Controller the key procedure is this:
>
>  procedure New_Content_View
>  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
>is
>   App : App_Access := App_Access (New_View.Connection_Data);
>begin
>   if App.Current_View /= null then
>  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
>(Element=> App.Current_View.all,
> Effect_Name=> "slide");
>
>  if App.Current_View.Dynamic then
> App.Current_View.Free;
>  end if;
>   end if;
>
>   App.Current_View := New_View;
>
>   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
> (Element=> App.Current_View.all,
>  Effect_Name=> "slide");
>end New_Content_View;
>
>
> On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton 
> wrote:
>
>> Sorry I didn't restart the source app on last reboot. Is up now. Try
>> again.
>>
>>
>> David Botton
>>
>>
>> On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley <
>> olivier.hen...@gmail.com> wrote:
>>
>>> Where am I supposed to find this source code?
>>>
>>> - Did not find in framework sources.
>>> - I tried the website link but it does not work:
>>> www.gnoga.com/source which redirects to www.gnoga.com:8889/source
>>>
>>> Thx,
>>>
>>> olivier
>>>
>>> On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton >> > wrote:
>>>
 Look at the code for the Gnoga web. It uses the jQueryUI packages
 in Gnoga.
 On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley <
 olivier.hen...@gmail.com> wrote:

> Hey,
>
> I was wondering what is the strategy if I want to code a sliding
> panel transitioning from "outside" the browser window to some inside
> placement? Something similar to the Gnoga welcome page.
>
> Thx,
>
> olivier
> 
> --
> Dive into the World of Parallel Programming The Go Parallel
> Website, sponsored
> by Intel and developed in partnership with Slashdot Media, is your
> hub for all
> things parallel software development, from weekly thought
> leadership blogs to
> news, videos, case studies, tutorials and more. Take a look and
> join the
> conversation now. http://goparallel.sourceforge.net/
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>

>>>
> 
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live
> exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
>

>>>
>> 
>> --
>> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
>> Develop your own process in accordance with the BPMN 2 standard
>> Learn Process modeling best practices with Bonita BPM through live
>> exercises
>> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
>> event?utm_
>> source=Sourceforge_BPM_Camp_5_6_

Re: [Gnoga-list] Sliding content

2015-04-08 Thread Rabbi David Botton
Make sure to look at test/jdemo.adb there I test almost every JQuery UI
control and there are you can see other uses of effects, etc.

On Wed, Apr 8, 2015 at 8:25 AM tony gair  wrote:

> Is there a downloadable version of this source? This is so I can follow
> things through with an editor, I'm finding it difficult to follow through
> the provided source visual tool?
>
> On Wed, Apr 8, 2015 at 10:23 AM, tony gair  wrote:
>
>> If anyone is interestedin Q2 , take a look at
>> https://jqueryui.com/effect/
>>
>> On Tue, Apr 7, 2015 at 9:16 PM, tony gair  wrote:
>>
>>> Hi David,
>>>2 questions about this!
>>> 1) how did you rig the buttons on the top to operate independently
>>> of the views
>>> 2) what other effects are there. is there a doc on this
>>> thanks
>>> Tony
>>>
>>> On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton 
>>> wrote:
>>>
 In Gnoga_Web.Controller the key procedure is this:

  procedure New_Content_View
  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
is
   App : App_Access := App_Access (New_View.Connection_Data);
begin
   if App.Current_View /= null then
  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
(Element=> App.Current_View.all,
 Effect_Name=> "slide");

  if App.Current_View.Dynamic then
 App.Current_View.Free;
  end if;
   end if;

   App.Current_View := New_View;

   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
 (Element=> App.Current_View.all,
  Effect_Name=> "slide");
end New_Content_View;


 On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton 
 wrote:

> Sorry I didn't restart the source app on last reboot. Is up now. Try
> again.
>
>
> David Botton
>
>
> On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley <
> olivier.hen...@gmail.com> wrote:
>
>> Where am I supposed to find this source code?
>>
>> - Did not find in framework sources.
>> - I tried the website link but it does not work: www.gnoga.com/source
>> which redirects to www.gnoga.com:8889/source
>>
>> Thx,
>>
>> olivier
>>
>> On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton 
>> wrote:
>>
>>> Look at the code for the Gnoga web. It uses the jQueryUI packages in
>>> Gnoga.
>>> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley <
>>> olivier.hen...@gmail.com> wrote:
>>>
 Hey,

 I was wondering what is the strategy if I want to code a sliding
 panel transitioning from "outside" the browser window to some inside
 placement? Something similar to the Gnoga welcome page.

 Thx,

 olivier
 
 --
 Dive into the World of Parallel Programming The Go Parallel
 Website, sponsored
 by Intel and developed in partnership with Slashdot Media, is your
 hub for all
 things parallel software development, from weekly thought
 leadership blogs to
 news, videos, case studies, tutorials and more. Take a look and
 join the
 conversation now. http://goparallel.sourceforge.net/
 ___
 Gnoga-list mailing list
 Gnoga-list@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gnoga-list

>>>
>>

 --
 BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
 Develop your own process in accordance with the BPMN 2 standard
 Learn Process modeling best practices with Bonita BPM through live
 exercises
 http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
 event?utm_
 source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
 ___
 Gnoga-list mailing list
 Gnoga-list@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gnoga-list


>>>
>>
> 
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live
> exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_
> campaign=VA_SF___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
--
BPM Cam

Re: [Gnoga-list] Sliding content

2015-04-08 Thread tony gair
Is there a downloadable version of this source? This is so I can follow
things through with an editor, I'm finding it difficult to follow through
the provided source visual tool?

On Wed, Apr 8, 2015 at 10:23 AM, tony gair  wrote:

> If anyone is interestedin Q2 , take a look at https://jqueryui.com/effect/
>
> On Tue, Apr 7, 2015 at 9:16 PM, tony gair  wrote:
>
>> Hi David,
>>2 questions about this!
>> 1) how did you rig the buttons on the top to operate independently of
>> the views
>> 2) what other effects are there. is there a doc on this
>> thanks
>> Tony
>>
>> On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton 
>> wrote:
>>
>>> In Gnoga_Web.Controller the key procedure is this:
>>>
>>>  procedure New_Content_View
>>>  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
>>>is
>>>   App : App_Access := App_Access (New_View.Connection_Data);
>>>begin
>>>   if App.Current_View /= null then
>>>  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
>>>(Element=> App.Current_View.all,
>>> Effect_Name=> "slide");
>>>
>>>  if App.Current_View.Dynamic then
>>> App.Current_View.Free;
>>>  end if;
>>>   end if;
>>>
>>>   App.Current_View := New_View;
>>>
>>>   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
>>> (Element=> App.Current_View.all,
>>>  Effect_Name=> "slide");
>>>end New_Content_View;
>>>
>>>
>>> On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton 
>>> wrote:
>>>
 Sorry I didn't restart the source app on last reboot. Is up now. Try
 again.


 David Botton


 On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley 
 wrote:

> Where am I supposed to find this source code?
>
> - Did not find in framework sources.
> - I tried the website link but it does not work: www.gnoga.com/source
> which redirects to www.gnoga.com:8889/source
>
> Thx,
>
> olivier
>
> On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton 
> wrote:
>
>> Look at the code for the Gnoga web. It uses the jQueryUI packages in
>> Gnoga.
>> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley <
>> olivier.hen...@gmail.com> wrote:
>>
>>> Hey,
>>>
>>> I was wondering what is the strategy if I want to code a sliding
>>> panel transitioning from "outside" the browser window to some inside
>>> placement? Something similar to the Gnoga welcome page.
>>>
>>> Thx,
>>>
>>> olivier
>>> 
>>> --
>>> Dive into the World of Parallel Programming The Go Parallel Website,
>>> sponsored
>>> by Intel and developed in partnership with Slashdot Media, is your
>>> hub for all
>>> things parallel software development, from weekly thought leadership
>>> blogs to
>>> news, videos, case studies, tutorials and more. Take a look and join
>>> the
>>> conversation now. http://goparallel.sourceforge.net/
>>> ___
>>> Gnoga-list mailing list
>>> Gnoga-list@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>>
>>
>
>>>
>>> --
>>> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
>>> Develop your own process in accordance with the BPMN 2 standard
>>> Learn Process modeling best practices with Bonita BPM through live
>>> exercises
>>> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
>>> event?utm_
>>> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
>>> ___
>>> Gnoga-list mailing list
>>> Gnoga-list@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>>
>>>
>>
>
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Sliding content

2015-04-08 Thread tony gair
If anyone is interestedin Q2 , take a look at https://jqueryui.com/effect/

On Tue, Apr 7, 2015 at 9:16 PM, tony gair  wrote:

> Hi David,
>2 questions about this!
> 1) how did you rig the buttons on the top to operate independently of
> the views
> 2) what other effects are there. is there a doc on this
> thanks
> Tony
>
> On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton 
> wrote:
>
>> In Gnoga_Web.Controller the key procedure is this:
>>
>>  procedure New_Content_View
>>  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
>>is
>>   App : App_Access := App_Access (New_View.Connection_Data);
>>begin
>>   if App.Current_View /= null then
>>  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
>>(Element=> App.Current_View.all,
>> Effect_Name=> "slide");
>>
>>  if App.Current_View.Dynamic then
>> App.Current_View.Free;
>>  end if;
>>   end if;
>>
>>   App.Current_View := New_View;
>>
>>   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
>> (Element=> App.Current_View.all,
>>  Effect_Name=> "slide");
>>end New_Content_View;
>>
>>
>> On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton 
>> wrote:
>>
>>> Sorry I didn't restart the source app on last reboot. Is up now. Try
>>> again.
>>>
>>>
>>> David Botton
>>>
>>>
>>> On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley 
>>> wrote:
>>>
 Where am I supposed to find this source code?

 - Did not find in framework sources.
 - I tried the website link but it does not work: www.gnoga.com/source
 which redirects to www.gnoga.com:8889/source

 Thx,

 olivier

 On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton 
 wrote:

> Look at the code for the Gnoga web. It uses the jQueryUI packages in
> Gnoga.
> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley <
> olivier.hen...@gmail.com> wrote:
>
>> Hey,
>>
>> I was wondering what is the strategy if I want to code a sliding
>> panel transitioning from "outside" the browser window to some inside
>> placement? Something similar to the Gnoga welcome page.
>>
>> Thx,
>>
>> olivier
>> 
>> --
>> Dive into the World of Parallel Programming The Go Parallel Website,
>> sponsored
>> by Intel and developed in partnership with Slashdot Media, is your
>> hub for all
>> things parallel software development, from weekly thought leadership
>> blogs to
>> news, videos, case studies, tutorials and more. Take a look and join
>> the
>> conversation now. http://goparallel.sourceforge.net/
>> ___
>> Gnoga-list mailing list
>> Gnoga-list@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>
>

>>
>> --
>> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
>> Develop your own process in accordance with the BPMN 2 standard
>> Learn Process modeling best practices with Bonita BPM through live
>> exercises
>> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
>> event?utm_
>> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
>> ___
>> Gnoga-list mailing list
>> Gnoga-list@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>
>>
>
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Sliding content

2015-04-07 Thread tony gair
Hi David,
   2 questions about this!
1) how did you rig the buttons on the top to operate independently of
the views
2) what other effects are there. is there a doc on this
thanks
Tony

On Mon, Apr 6, 2015 at 11:17 PM, Rabbi David Botton 
wrote:

> In Gnoga_Web.Controller the key procedure is this:
>
>  procedure New_Content_View
>  (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
>is
>   App : App_Access := App_Access (New_View.Connection_Data);
>begin
>   if App.Current_View /= null then
>  Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
>(Element=> App.Current_View.all,
> Effect_Name=> "slide");
>
>  if App.Current_View.Dynamic then
> App.Current_View.Free;
>  end if;
>   end if;
>
>   App.Current_View := New_View;
>
>   Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
> (Element=> App.Current_View.all,
>  Effect_Name=> "slide");
>end New_Content_View;
>
>
> On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton 
> wrote:
>
>> Sorry I didn't restart the source app on last reboot. Is up now. Try
>> again.
>>
>>
>> David Botton
>>
>>
>> On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley 
>> wrote:
>>
>>> Where am I supposed to find this source code?
>>>
>>> - Did not find in framework sources.
>>> - I tried the website link but it does not work: www.gnoga.com/source
>>> which redirects to www.gnoga.com:8889/source
>>>
>>> Thx,
>>>
>>> olivier
>>>
>>> On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton 
>>> wrote:
>>>
 Look at the code for the Gnoga web. It uses the jQueryUI packages in
 Gnoga.
 On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley 
 wrote:

> Hey,
>
> I was wondering what is the strategy if I want to code a sliding panel
> transitioning from "outside" the browser window to some inside placement?
> Something similar to the Gnoga welcome page.
>
> Thx,
>
> olivier
> 
> --
> Dive into the World of Parallel Programming The Go Parallel Website,
> sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub
> for all
> things parallel software development, from weekly thought leadership
> blogs to
> news, videos, case studies, tutorials and more. Take a look and join
> the
> conversation now. http://goparallel.sourceforge.net/
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>

>>>
>
> --
> BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
> Develop your own process in accordance with the BPMN 2 standard
> Learn Process modeling best practices with Bonita BPM through live
> exercises
> http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual-
> event?utm_
> source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
>
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Sliding content

2015-04-06 Thread Rabbi David Botton
In Gnoga_Web.Controller the key procedure is this:

 procedure New_Content_View
 (New_View : access Gnoga.Gui.View.View_Base_Type'Class)
   is
  App : App_Access := App_Access (New_View.Connection_Data);
   begin
  if App.Current_View /= null then
 Gnoga.Gui.Plugin.jQueryUI.Hide_With_Effect
   (Element=> App.Current_View.all,
Effect_Name=> "slide");

 if App.Current_View.Dynamic then
App.Current_View.Free;
 end if;
  end if;

  App.Current_View := New_View;

  Gnoga.Gui.Plugin.jQueryUI.Show_With_Effect
(Element=> App.Current_View.all,
 Effect_Name=> "slide");
   end New_Content_View;


On Mon, Apr 6, 2015 at 6:16 PM Rabbi David Botton  wrote:

> Sorry I didn't restart the source app on last reboot. Is up now. Try again.
>
>
> David Botton
>
>
> On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley 
> wrote:
>
>> Where am I supposed to find this source code?
>>
>> - Did not find in framework sources.
>> - I tried the website link but it does not work: www.gnoga.com/source
>> which redirects to www.gnoga.com:8889/source
>>
>> Thx,
>>
>> olivier
>>
>> On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton 
>> wrote:
>>
>>> Look at the code for the Gnoga web. It uses the jQueryUI packages in
>>> Gnoga.
>>> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley 
>>> wrote:
>>>
 Hey,

 I was wondering what is the strategy if I want to code a sliding panel
 transitioning from "outside" the browser window to some inside placement?
 Something similar to the Gnoga welcome page.

 Thx,

 olivier
 
 --
 Dive into the World of Parallel Programming The Go Parallel Website,
 sponsored
 by Intel and developed in partnership with Slashdot Media, is your hub
 for all
 things parallel software development, from weekly thought leadership
 blogs to
 news, videos, case studies, tutorials and more. Take a look and join the
 conversation now. http://goparallel.sourceforge.net/
 ___
 Gnoga-list mailing list
 Gnoga-list@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gnoga-list

>>>
>>
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Sliding content

2015-04-06 Thread Rabbi David Botton
Sorry I didn't restart the source app on last reboot. Is up now. Try again.

David Botton


On Mon, Apr 6, 2015 at 5:20 PM Olivier Henley 
wrote:

> Where am I supposed to find this source code?
>
> - Did not find in framework sources.
> - I tried the website link but it does not work: www.gnoga.com/source
> which redirects to www.gnoga.com:8889/source
>
> Thx,
>
> olivier
>
> On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton 
> wrote:
>
>> Look at the code for the Gnoga web. It uses the jQueryUI packages in
>> Gnoga.
>> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley 
>> wrote:
>>
>>> Hey,
>>>
>>> I was wondering what is the strategy if I want to code a sliding panel
>>> transitioning from "outside" the browser window to some inside placement?
>>> Something similar to the Gnoga welcome page.
>>>
>>> Thx,
>>>
>>> olivier
>>> 
>>> --
>>> Dive into the World of Parallel Programming The Go Parallel Website,
>>> sponsored
>>> by Intel and developed in partnership with Slashdot Media, is your hub
>>> for all
>>> things parallel software development, from weekly thought leadership
>>> blogs to
>>> news, videos, case studies, tutorials and more. Take a look and join the
>>> conversation now. http://goparallel.sourceforge.net/
>>> ___
>>> Gnoga-list mailing list
>>> Gnoga-list@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>>
>>
>
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Sliding content

2015-04-06 Thread Olivier Henley
Where am I supposed to find this source code?

- Did not find in framework sources.
- I tried the website link but it does not work: www.gnoga.com/source which
redirects to www.gnoga.com:8889/source

Thx,

olivier

On Fri, Apr 3, 2015 at 9:07 AM, Rabbi David Botton  wrote:

> Look at the code for the Gnoga web. It uses the jQueryUI packages in Gnoga.
> On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley 
> wrote:
>
>> Hey,
>>
>> I was wondering what is the strategy if I want to code a sliding panel
>> transitioning from "outside" the browser window to some inside placement?
>> Something similar to the Gnoga welcome page.
>>
>> Thx,
>>
>> olivier
>> 
>> --
>> Dive into the World of Parallel Programming The Go Parallel Website,
>> sponsored
>> by Intel and developed in partnership with Slashdot Media, is your hub
>> for all
>> things parallel software development, from weekly thought leadership
>> blogs to
>> news, videos, case studies, tutorials and more. Take a look and join the
>> conversation now. http://goparallel.sourceforge.net/
>> ___
>> Gnoga-list mailing list
>> Gnoga-list@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>>
>
--
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list


Re: [Gnoga-list] Sliding content

2015-04-03 Thread Rabbi David Botton
Look at the code for the Gnoga web. It uses the jQueryUI packages in Gnoga.
On Fri, Apr 3, 2015 at 1:52 AM Olivier Henley 
wrote:

> Hey,
>
> I was wondering what is the strategy if I want to code a sliding panel
> transitioning from "outside" the browser window to some inside placement?
> Something similar to the Gnoga welcome page.
>
> Thx,
>
> olivier
> 
> --
> Dive into the World of Parallel Programming The Go Parallel Website,
> sponsored
> by Intel and developed in partnership with Slashdot Media, is your hub for
> all
> things parallel software development, from weekly thought leadership blogs
> to
> news, videos, case studies, tutorials and more. Take a look and join the
> conversation now. http://goparallel.sourceforge.net/
> ___
> Gnoga-list mailing list
> Gnoga-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gnoga-list
>
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
Gnoga-list mailing list
Gnoga-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gnoga-list