You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Gavin Lei <ga...@gmail.com> on 2012/06/02 09:25:19 UTC

Re: Lightweight TapestryTools update site

Hi all,

I have strengthened TapestryTools'  components support in content
assist of TML editor.

In this case:
<a t:type=""></a>
All Tapestry components will be suggested after t:type="

And we support @Component annotation now, for example, there is such a
component in Java page class:

    @Component(
            parameters = {"value=context.propertyValue",
                                   "label=prop:context.label",
                                   "clientId=prop:context.propertyid",
                                   "validate=prop:calendarFieldValidator"})
    private DateField calendarField;

This component may be used in the template like this.

<input t:id="calendarField"/>

It means calendarField will be suggested after user input <input t:id=".


Fix 2 issues:
[1] http://code.google.com/p/tapestrytools/issues/detail?id=28&can=1
[2] http://code.google.com/p/tapestrytools/issues/detail?id=30&can=1


Update center is synchronized already, find details here :
http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools

Hope you guys enjoy it.

Yours Gavin Lei

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Bob Harner <bo...@gmail.com>.
Me too... Eclipse Indigo, CTRL+R works fine, content assist doesn't.

On Fri, Oct 5, 2012 at 6:10 AM, llama-king <p....@albourne.com> wrote:
> Hello!
>
> I can also chime in that the content assist doesn't appear to be working in
> general! The CTRL+R seems to be working though. I'm under Eclipse Indigo
> running 1.0.0.201208292255 of Tapestry Tools.
>
> Thanks so much for your efforts on this; the content assist would be
> especially fantastic in reducing finger pain. :)
>
> Peter
>
>
>
> --
> View this message in context: http://tapestry.1045711.n5.nabble.com/Lightweight-TapestryTools-update-site-tp5610392p5716675.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


RE: Lightweight TapestryTools update site

Posted by llama-king <p....@albourne.com>.
Hello!

I can also chime in that the content assist doesn't appear to be working in
general! The CTRL+R seems to be working though. I'm under Eclipse Indigo
running 1.0.0.201208292255 of Tapestry Tools.

Thanks so much for your efforts on this; the content assist would be
especially fantastic in reducing finger pain. :)

Peter



--
View this message in context: http://tapestry.1045711.n5.nabble.com/Lightweight-TapestryTools-update-site-tp5610392p5716675.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
HI Christian,

Thanks for your feedback, this issue is in my schedule now :-)

2012/8/7 Christian Riedel <cr...@googlemail.com>:
> Hi Gavin,
>
> I've been using the jump-to-file function of your plugin for a while now and I also noticed something that might be quite easy to fix:
> When you have multiple Index pages the plugin always jumps to the first index page it finds, which is in my case the root Index page.
>
> com.tap.pages.Index.java
> com.tap.pages.profile.Index.java
>
> Jumping back and forth between those always leads me to the root Index page. Maybe you should also take the package into account not only the filename. Maybe it will also fail if other pages have the same name but different packages (didn't test that case).
>
> But thanks for the plugin anyway! You did a good job! :-)
>
> Cheers,
> Christian
>
>
>
> Am 07.08.2012 um 12:25 schrieb Gavin Lei:
>
>> Hi,
>>
>> Thanks for your feedback, TapestryTools now just look for the "same"
>> filename, it does not support your situation yet.
>>
>> 2012/8/6 antalk <na...@vankalleveen.net>:
>>> Hi,
>>>
>>> I just installed the plugin in eclipse 'juno'. It works fine but it can not
>>> match named translated TML pages to the correct class.
>>>
>>> What i mean:
>>>
>>> I have several template pages which end with a locale identifier, eg:
>>>
>>> About_nl.tml
>>> About_en.tml
>>> About_de.tml
>>>
>>> The plugin should be able to link this to the 'About.java' class,  but ( as
>>> of now) it does not.  Should be great if this could be implemented.
>>>
>>> Thx
>>>
>>>
>>>
>>>
>>>
>>> --
>>> View this message in context: http://tapestry.1045711.n5.nabble.com/Lightweight-TapestryTools-update-site-tp5610392p5715091.html
>>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Christian Riedel <cr...@googlemail.com>.
Hi Gavin,

I've been using the jump-to-file function of your plugin for a while now and I also noticed something that might be quite easy to fix:
When you have multiple Index pages the plugin always jumps to the first index page it finds, which is in my case the root Index page.  

com.tap.pages.Index.java
com.tap.pages.profile.Index.java

Jumping back and forth between those always leads me to the root Index page. Maybe you should also take the package into account not only the filename. Maybe it will also fail if other pages have the same name but different packages (didn't test that case).

But thanks for the plugin anyway! You did a good job! :-)

Cheers,
Christian



Am 07.08.2012 um 12:25 schrieb Gavin Lei:

> Hi,
> 
> Thanks for your feedback, TapestryTools now just look for the "same"
> filename, it does not support your situation yet.
> 
> 2012/8/6 antalk <na...@vankalleveen.net>:
>> Hi,
>> 
>> I just installed the plugin in eclipse 'juno'. It works fine but it can not
>> match named translated TML pages to the correct class.
>> 
>> What i mean:
>> 
>> I have several template pages which end with a locale identifier, eg:
>> 
>> About_nl.tml
>> About_en.tml
>> About_de.tml
>> 
>> The plugin should be able to link this to the 'About.java' class,  but ( as
>> of now) it does not.  Should be great if this could be implemented.
>> 
>> Thx
>> 
>> 
>> 
>> 
>> 
>> --
>> View this message in context: http://tapestry.1045711.n5.nabble.com/Lightweight-TapestryTools-update-site-tp5610392p5715091.html
>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>> 
> 
> 
> 
> -- 
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi,

Thanks for your feedback, TapestryTools now just look for the "same"
filename, it does not support your situation yet.

2012/8/6 antalk <na...@vankalleveen.net>:
> Hi,
>
> I just installed the plugin in eclipse 'juno'. It works fine but it can not
> match named translated TML pages to the correct class.
>
> What i mean:
>
> I have several template pages which end with a locale identifier, eg:
>
> About_nl.tml
> About_en.tml
> About_de.tml
>
> The plugin should be able to link this to the 'About.java' class,  but ( as
> of now) it does not.  Should be great if this could be implemented.
>
> Thx
>
>
>
>
>
> --
> View this message in context: http://tapestry.1045711.n5.nabble.com/Lightweight-TapestryTools-update-site-tp5610392p5715091.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by antalk <na...@vankalleveen.net>.
Hi,

I just installed the plugin in eclipse 'juno'. It works fine but it can not
match named translated TML pages to the correct class.

What i mean: 

I have several template pages which end with a locale identifier, eg:

About_nl.tml
About_en.tml
About_de.tml

The plugin should be able to link this to the 'About.java' class,  but ( as
of now) it does not.  Should be great if this could be implemented.

Thx





--
View this message in context: http://tapestry.1045711.n5.nabble.com/Lightweight-TapestryTools-update-site-tp5610392p5715091.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hey,

Sorry to hear that, i did not test it in the condition of many tml
files open in the workbench.

Yeah, it was built on XML editor, just add many tapestry features,
auto-complete features, i have no ideas how it happen. I will test it
and find out the reason.

2012/8/8 antalk <na...@vankalleveen.net>:
> Hi Gavin,
>
> I had to uninstall your plugin from my eclipse environment (juno) it became
> terribly slow when i had about 30 tml pages open. I just could not work with
> it anymore.
>
> I'm sorry that i have no logs or errors, it just became awfully slow..
>
> It may have something todo with the fact that the TML editor is based (or
> derived) from the XML editor ?? i know link 'tml' pages to the JSP editor
> and it works much faster.
>
> Antal
>
>
>
> --
> View this message in context: http://tapestry.1045711.n5.nabble.com/Lightweight-TapestryTools-update-site-tp5610392p5715142.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by antalk <na...@vankalleveen.net>.
Hi Gavin,

I had to uninstall your plugin from my eclipse environment (juno) it became
terribly slow when i had about 30 tml pages open. I just could not work with
it anymore.

I'm sorry that i have no logs or errors, it just became awfully slow..

It may have something todo with the fact that the TML editor is based (or
derived) from the XML editor ?? i know link 'tml' pages to the JSP editor
and it works much faster.

Antal



--
View this message in context: http://tapestry.1045711.n5.nabble.com/Lightweight-TapestryTools-update-site-tp5610392p5715142.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Davor Hrg <hr...@gmail.com>.
Hi,

I've just installed the TapestryTools but have no autocomplete in template
and CTRL+R is not working ... actually CTRL+R is the only feature
I' am really interested in for now.

waht can I do to check what is wrong ?





On Sun, Aug 19, 2012 at 4:30 PM, Gavin Lei <ga...@gmail.com> wrote:

> Hi all,
>
> I have fixed issue
> 37(http://code.google.com/p/tapestrytools/issues/detail?id=37&can=1),
> it means that
> TapestryTools can custom components from Library component packages
> now, it is already in TapestryTools' update site, you guys can have a
> trial of it.
>
> Meanwhile, TapestryTools is now available in Eclipse Market place, you
> can find it by "tapestry" keyword :-)
>
> 2012/8/16 Athneria, Mahendra <ma...@atos.net>:
> > Thanks in advance Gavin :-)
> >
> > Regards,
> > Mahendra
> >
> > -----Original Message-----
> > From: Gavin Lei [mailto:gavingui2011@gmail.com]
> > Sent: Wednesday, August 15, 2012 8:24 PM
> > To: Tapestry users
> > Subject: Re: Lightweight TapestryTools update site
> >
> > Yeah, i am working for this feature, it will be available in the
> > coming week. I will post here once it is available
> >
> > 2012/8/9 Athneria, Mahendra <ma...@atos.net>:
> >> Hi Gavin,
> >>
> >> Thanks for the reply. It would be great if you can add that feature
> too. I want to see the list of components from jar to the auto complete
> list.
> >>
> >> Thanks Gavin,
> >>
> >> Regards,
> >> Mahendra
> >>
> >> -----Original Message-----
> >> From: Gavin Lei [mailto:gavingui2011@gmail.com]
> >> Sent: Wednesday, August 08, 2012 6:54 PM
> >> To: Tapestry users
> >> Subject: Re: Lightweight TapestryTools update site
> >>
> >> Hi Athneria,
> >>
> >> This feature support only custom components in project's source
> >> directory, not consider components in jars, maybe i should also add
> >> jars support.
> >>
> >> 2012/8/7 Athneria, Mahendra <ma...@atos.net>:
> >>> Hi Gavin,
> >>>
> >>> I took the update and trying to test the custom components support
> feature with different prefix.
> >>> I have some doubts regarding the same.
> >>>
> >>> A) - We have a nice editor in which developer enters mapping :> - we
> can only edit the custom components by right click on the project. And when
> I click on (+) button I can only see the packages from my project only. I
> am not able to see the components package from different libraries. So how
> I can do the same. I tried to achieve the same by editing "components.tcc"
> file. Below is the example.
> >>>
> >>> <?xml version="1.0" encoding="UTF-8"?>
> >>> <root>
> >>> <packages>
> >>> <package prefix="y" path="net.awl.tapestry5.kawwa.components"/> <!--
> path is of components path of my libraries -->
> >>> </packages>
> >>> <components> <!-- Breadcrumb is components inside my libraries -->
> >>> <component id="Breadcrumb" name="Breadcrumb" text="Breadcrumb"
> prefix="y" path="net.awl.tapestry5.kawwa.components"/>
> >>> </components>
> >>> </root>
> >>>
> >>> Even thought I am not able to get the " Breadcrumb " name when I press
> "ctrl+space" on tml file.
> >>>
> >>> Any idea Gavin??
> >>>
> >>> Regards,
> >>> Mahendra Athneria
> >>>
> >>>
> >>> -----Original Message-----
> >>> From: Gavin Lei [mailto:gavingui2011@gmail.com]
> >>> Sent: Monday, August 06, 2012 6:21 PM
> >>> To: Tapestry users
> >>> Cc: Igor Drobiazko
> >>> Subject: Re: Lightweight TapestryTools update site
> >>>
> >>>
> >>> Hi all,
> >>>
> >>> In TapestryTools' components auto-complete feature, by default only
> >>> components defined in these two packages are in the list:
> >>>
> >>> 1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in
> components)
> >>> 2.app-package.components, whereby app-package is the applications root
> >>> package defined in the web.xml (Tapestry web application's root
> >>> components)
> >>>
> >>> Now, I have add custom components support for TapestryTools. It means
> >>> besides these components, TapestryTools support also custom components
> >>> with different prefix with "t:". It allow you to provide
> >>> autocompletion for custom components from different libraries, and we
> >>> have a nice editor in which developer enters mapping:
> >>>
> >>> x: org.example.components
> >>> y: org.acme.lib.components
> >>>
> >>> In this mapping, a library prefix is mapped to a component package.
> >>> So, every component from org.example.components package would have x
> >>> prefix. For example:
> >>>
> >>> <span t:type="x/MyComponent"></span>
> >>> <span t:type="y/Foo"></span>
> >>>
> >>> This feature is alreay available in TapestryTools' update site [1],
> >>> and you can find detailed guide about this feature and the "Custom
> >>> components mapping editor" here [2] (It is in Section 7).
> >>>
> >>> Looking forward to your feedbacks about TapestryTools and this new
> >>> feature, thanks.
> >>>
> >>> [1] http://tapestrytools.googlecode.com/svn/TapestryTools/
> >>> [2]
> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
> >>> --
> >>> ---------------------------------
> >>> Best Regards
> >>> Gavin Lei (雷银)
> >>> Email: gavingui2011@gmail.com
> >>>
> >>> ---------------------------------------------------------------------
> >>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >>> For additional commands, e-mail: users-help@tapestry.apache.org
> >>
> >>
> >>
> >> --
> >> ---------------------------------
> >> Best Regards
> >> Gavin Lei (雷银)
> >> Email: gavingui2011@gmail.com
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >>
> >>
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
> >
> > --
> > ---------------------------------
> > Best Regards
> > Gavin Lei (雷银)
> > Email: gavingui2011@gmail.com
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> > For additional commands, e-mail: users-help@tapestry.apache.org
> >
> >
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

TapestryTools

Posted by mw...@kcp.com.
Can anyone tell me why TapestryTools will not install from the Eclipse
Marketplace.  I get the following message:

The following solutions are not available: TapestryTools
(id=org.apache.tapestrytools.features.feature.group,
site=http://tapestrytools.googlecode.com/svn/TapestryTools/)

I have used TapestryTools before, I am on a new system and am trying to
setup my development environment.

Michael Williamson
Analyst Sr Applications Developer
Phone: 816/997-5994


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by mw...@kcp.com.
Here is the text from the image.

The following solutions are not available: TapestryTools
(id=org.apache.tapestrytools.features.feature.group,
site=http://tapestrytools.googlecode.com/svn/TapestryTools/)

Michael Williamson
Analyst Sr Applications Developer
Phone: 816/997-5994


|------------>
| From:      |
|------------>
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
  |mwilliamson@kcp.com                                                                                                                               |
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------>
| To:        |
|------------>
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
  |"Tapestry users" <us...@tapestry.apache.org>                                                                                                      |
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------>
| Date:      |
|------------>
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
  |11/09/2012 08:17 AM                                                                                                                               |
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------>
| Subject:   |
|------------>
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
  |Re: Lightweight TapestryTools update site                                                                                                         |
  >--------------------------------------------------------------------------------------------------------------------------------------------------|





I am having a problem install TapestryTools from the Eclipse Market Place.
I am use MyEclipse  and I get this when I try to install:

(Embedded image moved to file: pic25175.gif)

I have used TapestyTools before but when I upgraded to the latest version
of MyEclipse this happened.

Michael Williamson
Analyst Sr Applications Developer
Phone: 816/997-5994


|------------>
| From:      |
|------------>

>--------------------------------------------------------------------------------------------------------------------------------------------------|

  |Gavin Lei <ga...@gmail.com>
|

>--------------------------------------------------------------------------------------------------------------------------------------------------|

|------------>
| To:        |
|------------>

>--------------------------------------------------------------------------------------------------------------------------------------------------|

  |Tapestry users <us...@tapestry.apache.org>
|

>--------------------------------------------------------------------------------------------------------------------------------------------------|

|------------>
| Cc:        |
|------------>

>--------------------------------------------------------------------------------------------------------------------------------------------------|

  |Igor Drobiazko <ig...@gmail.com>
|

>--------------------------------------------------------------------------------------------------------------------------------------------------|

|------------>
| Date:      |
|------------>

>--------------------------------------------------------------------------------------------------------------------------------------------------|

  |08/19/2012 09:30 AM
|

>--------------------------------------------------------------------------------------------------------------------------------------------------|

|------------>
| Subject:   |
|------------>

>--------------------------------------------------------------------------------------------------------------------------------------------------|

  |Re: Lightweight TapestryTools update site
|

>--------------------------------------------------------------------------------------------------------------------------------------------------|






Hi all,

I have fixed issue
37(http://code.google.com/p/tapestrytools/issues/detail?id=37&can=1),
it means that
TapestryTools can custom components from Library component packages
now, it is already in TapestryTools' update site, you guys can have a
trial of it.

Meanwhile, TapestryTools is now available in Eclipse Market place, you
can find it by "tapestry" keyword :-)

2012/8/16 Athneria, Mahendra <ma...@atos.net>:
> Thanks in advance Gavin :-)
>
> Regards,
> Mahendra
>
> -----Original Message-----
> From: Gavin Lei [mailto:gavingui2011@gmail.com]
> Sent: Wednesday, August 15, 2012 8:24 PM
> To: Tapestry users
> Subject: Re: Lightweight TapestryTools update site
>
> Yeah, i am working for this feature, it will be available in the
> coming week. I will post here once it is available
>
> 2012/8/9 Athneria, Mahendra <ma...@atos.net>:
>> Hi Gavin,
>>
>> Thanks for the reply. It would be great if you can add that feature too.
I want to see the list of components from jar to the auto complete list.
>>
>> Thanks Gavin,
>>
>> Regards,
>> Mahendra
>>
>> -----Original Message-----
>> From: Gavin Lei [mailto:gavingui2011@gmail.com]
>> Sent: Wednesday, August 08, 2012 6:54 PM
>> To: Tapestry users
>> Subject: Re: Lightweight TapestryTools update site
>>
>> Hi Athneria,
>>
>> This feature support only custom components in project's source
>> directory, not consider components in jars, maybe i should also add
>> jars support.
>>
>> 2012/8/7 Athneria, Mahendra <ma...@atos.net>:
>>> Hi Gavin,
>>>
>>> I took the update and trying to test the custom components support
feature with different prefix.
>>> I have some doubts regarding the same.
>>>
>>> A) - We have a nice editor in which developer enters mapping :> - we
can only edit the custom components by right click on the project. And when
I click on (+) button I can only see the packages from my project only. I
am not able to see the components package from different libraries. So how
I can do the same. I tried to achieve the same by editing "components.tcc"
file. Below is the example.
>>>
>>> <?xml version="1.0" encoding="UTF-8"?>
>>> <root>
>>> <packages>
>>> <package prefix="y" path="net.awl.tapestry5.kawwa.components"/> <!--
path is of components path of my libraries -->
>>> </packages>
>>> <components> <!-- Breadcrumb is components inside my libraries -->
>>> <component id="Breadcrumb" name="Breadcrumb" text="Breadcrumb"
prefix="y" path="net.awl.tapestry5.kawwa.components"/>
>>> </components>
>>> </root>
>>>
>>> Even thought I am not able to get the " Breadcrumb " name when I press
"ctrl+space" on tml file.
>>>
>>> Any idea Gavin??
>>>
>>> Regards,
>>> Mahendra Athneria
>>>
>>>
>>> -----Original Message-----
>>> From: Gavin Lei [mailto:gavingui2011@gmail.com]
>>> Sent: Monday, August 06, 2012 6:21 PM
>>> To: Tapestry users
>>> Cc: Igor Drobiazko
>>> Subject: Re: Lightweight TapestryTools update site
>>>
>>>
>>> Hi all,
>>>
>>> In TapestryTools' components auto-complete feature, by default only
>>> components defined in these two packages are in the list:
>>>
>>> 1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in
components)
>>> 2.app-package.components, whereby app-package is the applications root
>>> package defined in the web.xml (Tapestry web application's root
>>> components)
>>>
>>> Now, I have add custom components support for TapestryTools. It means
>>> besides these components, TapestryTools support also custom components
>>> with different prefix with "t:". It allow you to provide
>>> autocompletion for custom components from different libraries, and we
>>> have a nice editor in which developer enters mapping:
>>>
>>> x: org.example.components
>>> y: org.acme.lib.components
>>>
>>> In this mapping, a library prefix is mapped to a component package.
>>> So, every component from org.example.components package would have x
>>> prefix. For example:
>>>
>>> <span t:type="x/MyComponent"></span>
>>> <span t:type="y/Foo"></span>
>>>
>>> This feature is alreay available in TapestryTools' update site [1],
>>> and you can find detailed guide about this feature and the "Custom
>>> components mapping editor" here [2] (It is in Section 7).
>>>
>>> Looking forward to your feedbacks about TapestryTools and this new
>>> feature, thanks.
>>>
>>> [1] http://tapestrytools.googlecode.com/svn/TapestryTools/
>>> [2]
http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools


>>> --
>>> ---------------------------------
>>> Best Regards
>>> Gavin Lei (雷银)
>>> Email: gavingui2011@gmail.com
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>



--
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org

Re: Lightweight TapestryTools update site

Posted by mw...@kcp.com.
I am having a problem install TapestryTools from the Eclipse Market Place.
I am use MyEclipse  and I get this when I try to install:

(Embedded image moved to file: pic25175.gif)

I have used TapestyTools before but when I upgraded to the latest version
of MyEclipse this happened.

Michael Williamson
Analyst Sr Applications Developer
Phone: 816/997-5994


|------------>
| From:      |
|------------>
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
  |Gavin Lei <ga...@gmail.com>                                                                                                                |
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------>
| To:        |
|------------>
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
  |Tapestry users <us...@tapestry.apache.org>                                                                                                        |
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------>
| Cc:        |
|------------>
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
  |Igor Drobiazko <ig...@gmail.com>                                                                                                         |
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------>
| Date:      |
|------------>
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
  |08/19/2012 09:30 AM                                                                                                                               |
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
|------------>
| Subject:   |
|------------>
  >--------------------------------------------------------------------------------------------------------------------------------------------------|
  |Re: Lightweight TapestryTools update site                                                                                                         |
  >--------------------------------------------------------------------------------------------------------------------------------------------------|





Hi all,

I have fixed issue
37(http://code.google.com/p/tapestrytools/issues/detail?id=37&can=1),
it means that
TapestryTools can custom components from Library component packages
now, it is already in TapestryTools' update site, you guys can have a
trial of it.

Meanwhile, TapestryTools is now available in Eclipse Market place, you
can find it by "tapestry" keyword :-)

2012/8/16 Athneria, Mahendra <ma...@atos.net>:
> Thanks in advance Gavin :-)
>
> Regards,
> Mahendra
>
> -----Original Message-----
> From: Gavin Lei [mailto:gavingui2011@gmail.com]
> Sent: Wednesday, August 15, 2012 8:24 PM
> To: Tapestry users
> Subject: Re: Lightweight TapestryTools update site
>
> Yeah, i am working for this feature, it will be available in the
> coming week. I will post here once it is available
>
> 2012/8/9 Athneria, Mahendra <ma...@atos.net>:
>> Hi Gavin,
>>
>> Thanks for the reply. It would be great if you can add that feature too.
I want to see the list of components from jar to the auto complete list.
>>
>> Thanks Gavin,
>>
>> Regards,
>> Mahendra
>>
>> -----Original Message-----
>> From: Gavin Lei [mailto:gavingui2011@gmail.com]
>> Sent: Wednesday, August 08, 2012 6:54 PM
>> To: Tapestry users
>> Subject: Re: Lightweight TapestryTools update site
>>
>> Hi Athneria,
>>
>> This feature support only custom components in project's source
>> directory, not consider components in jars, maybe i should also add
>> jars support.
>>
>> 2012/8/7 Athneria, Mahendra <ma...@atos.net>:
>>> Hi Gavin,
>>>
>>> I took the update and trying to test the custom components support
feature with different prefix.
>>> I have some doubts regarding the same.
>>>
>>> A) - We have a nice editor in which developer enters mapping :> - we
can only edit the custom components by right click on the project. And when
I click on (+) button I can only see the packages from my project only. I
am not able to see the components package from different libraries. So how
I can do the same. I tried to achieve the same by editing "components.tcc"
file. Below is the example.
>>>
>>> <?xml version="1.0" encoding="UTF-8"?>
>>> <root>
>>> <packages>
>>> <package prefix="y" path="net.awl.tapestry5.kawwa.components"/> <!--
path is of components path of my libraries -->
>>> </packages>
>>> <components> <!-- Breadcrumb is components inside my libraries -->
>>> <component id="Breadcrumb" name="Breadcrumb" text="Breadcrumb"
prefix="y" path="net.awl.tapestry5.kawwa.components"/>
>>> </components>
>>> </root>
>>>
>>> Even thought I am not able to get the " Breadcrumb " name when I press
"ctrl+space" on tml file.
>>>
>>> Any idea Gavin??
>>>
>>> Regards,
>>> Mahendra Athneria
>>>
>>>
>>> -----Original Message-----
>>> From: Gavin Lei [mailto:gavingui2011@gmail.com]
>>> Sent: Monday, August 06, 2012 6:21 PM
>>> To: Tapestry users
>>> Cc: Igor Drobiazko
>>> Subject: Re: Lightweight TapestryTools update site
>>>
>>>
>>> Hi all,
>>>
>>> In TapestryTools' components auto-complete feature, by default only
>>> components defined in these two packages are in the list:
>>>
>>> 1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in
components)
>>> 2.app-package.components, whereby app-package is the applications root
>>> package defined in the web.xml (Tapestry web application's root
>>> components)
>>>
>>> Now, I have add custom components support for TapestryTools. It means
>>> besides these components, TapestryTools support also custom components
>>> with different prefix with "t:". It allow you to provide
>>> autocompletion for custom components from different libraries, and we
>>> have a nice editor in which developer enters mapping:
>>>
>>> x: org.example.components
>>> y: org.acme.lib.components
>>>
>>> In this mapping, a library prefix is mapped to a component package.
>>> So, every component from org.example.components package would have x
>>> prefix. For example:
>>>
>>> <span t:type="x/MyComponent"></span>
>>> <span t:type="y/Foo"></span>
>>>
>>> This feature is alreay available in TapestryTools' update site [1],
>>> and you can find detailed guide about this feature and the "Custom
>>> components mapping editor" here [2] (It is in Section 7).
>>>
>>> Looking forward to your feedbacks about TapestryTools and this new
>>> feature, thanks.
>>>
>>> [1] http://tapestrytools.googlecode.com/svn/TapestryTools/
>>> [2]
http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools

>>> --
>>> ---------------------------------
>>> Best Regards
>>> Gavin Lei (雷银)
>>> Email: gavingui2011@gmail.com
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>



--
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org



Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi all,

I have fixed issue
37(http://code.google.com/p/tapestrytools/issues/detail?id=37&can=1),
it means that
TapestryTools can custom components from Library component packages
now, it is already in TapestryTools' update site, you guys can have a
trial of it.

Meanwhile, TapestryTools is now available in Eclipse Market place, you
can find it by "tapestry" keyword :-)

2012/8/16 Athneria, Mahendra <ma...@atos.net>:
> Thanks in advance Gavin :-)
>
> Regards,
> Mahendra
>
> -----Original Message-----
> From: Gavin Lei [mailto:gavingui2011@gmail.com]
> Sent: Wednesday, August 15, 2012 8:24 PM
> To: Tapestry users
> Subject: Re: Lightweight TapestryTools update site
>
> Yeah, i am working for this feature, it will be available in the
> coming week. I will post here once it is available
>
> 2012/8/9 Athneria, Mahendra <ma...@atos.net>:
>> Hi Gavin,
>>
>> Thanks for the reply. It would be great if you can add that feature too. I want to see the list of components from jar to the auto complete list.
>>
>> Thanks Gavin,
>>
>> Regards,
>> Mahendra
>>
>> -----Original Message-----
>> From: Gavin Lei [mailto:gavingui2011@gmail.com]
>> Sent: Wednesday, August 08, 2012 6:54 PM
>> To: Tapestry users
>> Subject: Re: Lightweight TapestryTools update site
>>
>> Hi Athneria,
>>
>> This feature support only custom components in project's source
>> directory, not consider components in jars, maybe i should also add
>> jars support.
>>
>> 2012/8/7 Athneria, Mahendra <ma...@atos.net>:
>>> Hi Gavin,
>>>
>>> I took the update and trying to test the custom components support feature with different prefix.
>>> I have some doubts regarding the same.
>>>
>>> A) - We have a nice editor in which developer enters mapping :> - we can only edit the custom components by right click on the project. And when I click on (+) button I can only see the packages from my project only. I am not able to see the components package from different libraries. So how I can do the same. I tried to achieve the same by editing "components.tcc" file. Below is the example.
>>>
>>> <?xml version="1.0" encoding="UTF-8"?>
>>> <root>
>>> <packages>
>>> <package prefix="y" path="net.awl.tapestry5.kawwa.components"/> <!-- path is of components path of my libraries -->
>>> </packages>
>>> <components> <!-- Breadcrumb is components inside my libraries -->
>>> <component id="Breadcrumb" name="Breadcrumb" text="Breadcrumb" prefix="y" path="net.awl.tapestry5.kawwa.components"/>
>>> </components>
>>> </root>
>>>
>>> Even thought I am not able to get the " Breadcrumb " name when I press "ctrl+space" on tml file.
>>>
>>> Any idea Gavin??
>>>
>>> Regards,
>>> Mahendra Athneria
>>>
>>>
>>> -----Original Message-----
>>> From: Gavin Lei [mailto:gavingui2011@gmail.com]
>>> Sent: Monday, August 06, 2012 6:21 PM
>>> To: Tapestry users
>>> Cc: Igor Drobiazko
>>> Subject: Re: Lightweight TapestryTools update site
>>>
>>>
>>> Hi all,
>>>
>>> In TapestryTools' components auto-complete feature, by default only
>>> components defined in these two packages are in the list:
>>>
>>> 1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in components)
>>> 2.app-package.components, whereby app-package is the applications root
>>> package defined in the web.xml (Tapestry web application's root
>>> components)
>>>
>>> Now, I have add custom components support for TapestryTools. It means
>>> besides these components, TapestryTools support also custom components
>>> with different prefix with "t:". It allow you to provide
>>> autocompletion for custom components from different libraries, and we
>>> have a nice editor in which developer enters mapping:
>>>
>>> x: org.example.components
>>> y: org.acme.lib.components
>>>
>>> In this mapping, a library prefix is mapped to a component package.
>>> So, every component from org.example.components package would have x
>>> prefix. For example:
>>>
>>> <span t:type="x/MyComponent"></span>
>>> <span t:type="y/Foo"></span>
>>>
>>> This feature is alreay available in TapestryTools' update site [1],
>>> and you can find detailed guide about this feature and the "Custom
>>> components mapping editor" here [2] (It is in Section 7).
>>>
>>> Looking forward to your feedbacks about TapestryTools and this new
>>> feature, thanks.
>>>
>>> [1] http://tapestrytools.googlecode.com/svn/TapestryTools/
>>> [2] http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>>> --
>>> ---------------------------------
>>> Best Regards
>>> Gavin Lei (雷银)
>>> Email: gavingui2011@gmail.com
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


RE: Lightweight TapestryTools update site

Posted by "Athneria, Mahendra" <ma...@atos.net>.
Thanks in advance Gavin :-)

Regards,
Mahendra

-----Original Message-----
From: Gavin Lei [mailto:gavingui2011@gmail.com] 
Sent: Wednesday, August 15, 2012 8:24 PM
To: Tapestry users
Subject: Re: Lightweight TapestryTools update site

Yeah, i am working for this feature, it will be available in the
coming week. I will post here once it is available

2012/8/9 Athneria, Mahendra <ma...@atos.net>:
> Hi Gavin,
>
> Thanks for the reply. It would be great if you can add that feature too. I want to see the list of components from jar to the auto complete list.
>
> Thanks Gavin,
>
> Regards,
> Mahendra
>
> -----Original Message-----
> From: Gavin Lei [mailto:gavingui2011@gmail.com]
> Sent: Wednesday, August 08, 2012 6:54 PM
> To: Tapestry users
> Subject: Re: Lightweight TapestryTools update site
>
> Hi Athneria,
>
> This feature support only custom components in project's source
> directory, not consider components in jars, maybe i should also add
> jars support.
>
> 2012/8/7 Athneria, Mahendra <ma...@atos.net>:
>> Hi Gavin,
>>
>> I took the update and trying to test the custom components support feature with different prefix.
>> I have some doubts regarding the same.
>>
>> A) - We have a nice editor in which developer enters mapping :> - we can only edit the custom components by right click on the project. And when I click on (+) button I can only see the packages from my project only. I am not able to see the components package from different libraries. So how I can do the same. I tried to achieve the same by editing "components.tcc" file. Below is the example.
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <root>
>> <packages>
>> <package prefix="y" path="net.awl.tapestry5.kawwa.components"/> <!-- path is of components path of my libraries -->
>> </packages>
>> <components> <!-- Breadcrumb is components inside my libraries -->
>> <component id="Breadcrumb" name="Breadcrumb" text="Breadcrumb" prefix="y" path="net.awl.tapestry5.kawwa.components"/>
>> </components>
>> </root>
>>
>> Even thought I am not able to get the " Breadcrumb " name when I press "ctrl+space" on tml file.
>>
>> Any idea Gavin??
>>
>> Regards,
>> Mahendra Athneria
>>
>>
>> -----Original Message-----
>> From: Gavin Lei [mailto:gavingui2011@gmail.com]
>> Sent: Monday, August 06, 2012 6:21 PM
>> To: Tapestry users
>> Cc: Igor Drobiazko
>> Subject: Re: Lightweight TapestryTools update site
>>
>>
>> Hi all,
>>
>> In TapestryTools' components auto-complete feature, by default only
>> components defined in these two packages are in the list:
>>
>> 1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in components)
>> 2.app-package.components, whereby app-package is the applications root
>> package defined in the web.xml (Tapestry web application's root
>> components)
>>
>> Now, I have add custom components support for TapestryTools. It means
>> besides these components, TapestryTools support also custom components
>> with different prefix with "t:". It allow you to provide
>> autocompletion for custom components from different libraries, and we
>> have a nice editor in which developer enters mapping:
>>
>> x: org.example.components
>> y: org.acme.lib.components
>>
>> In this mapping, a library prefix is mapped to a component package.
>> So, every component from org.example.components package would have x
>> prefix. For example:
>>
>> <span t:type="x/MyComponent"></span>
>> <span t:type="y/Foo"></span>
>>
>> This feature is alreay available in TapestryTools' update site [1],
>> and you can find detailed guide about this feature and the "Custom
>> components mapping editor" here [2] (It is in Section 7).
>>
>> Looking forward to your feedbacks about TapestryTools and this new
>> feature, thanks.
>>
>> [1] http://tapestrytools.googlecode.com/svn/TapestryTools/
>> [2] http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org



Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Yeah, i am working for this feature, it will be available in the
coming week. I will post here once it is available

2012/8/9 Athneria, Mahendra <ma...@atos.net>:
> Hi Gavin,
>
> Thanks for the reply. It would be great if you can add that feature too. I want to see the list of components from jar to the auto complete list.
>
> Thanks Gavin,
>
> Regards,
> Mahendra
>
> -----Original Message-----
> From: Gavin Lei [mailto:gavingui2011@gmail.com]
> Sent: Wednesday, August 08, 2012 6:54 PM
> To: Tapestry users
> Subject: Re: Lightweight TapestryTools update site
>
> Hi Athneria,
>
> This feature support only custom components in project's source
> directory, not consider components in jars, maybe i should also add
> jars support.
>
> 2012/8/7 Athneria, Mahendra <ma...@atos.net>:
>> Hi Gavin,
>>
>> I took the update and trying to test the custom components support feature with different prefix.
>> I have some doubts regarding the same.
>>
>> A) - We have a nice editor in which developer enters mapping :> - we can only edit the custom components by right click on the project. And when I click on (+) button I can only see the packages from my project only. I am not able to see the components package from different libraries. So how I can do the same. I tried to achieve the same by editing "components.tcc" file. Below is the example.
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <root>
>> <packages>
>> <package prefix="y" path="net.awl.tapestry5.kawwa.components"/> <!-- path is of components path of my libraries -->
>> </packages>
>> <components> <!-- Breadcrumb is components inside my libraries -->
>> <component id="Breadcrumb" name="Breadcrumb" text="Breadcrumb" prefix="y" path="net.awl.tapestry5.kawwa.components"/>
>> </components>
>> </root>
>>
>> Even thought I am not able to get the " Breadcrumb " name when I press "ctrl+space" on tml file.
>>
>> Any idea Gavin??
>>
>> Regards,
>> Mahendra Athneria
>>
>>
>> -----Original Message-----
>> From: Gavin Lei [mailto:gavingui2011@gmail.com]
>> Sent: Monday, August 06, 2012 6:21 PM
>> To: Tapestry users
>> Cc: Igor Drobiazko
>> Subject: Re: Lightweight TapestryTools update site
>>
>>
>> Hi all,
>>
>> In TapestryTools' components auto-complete feature, by default only
>> components defined in these two packages are in the list:
>>
>> 1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in components)
>> 2.app-package.components, whereby app-package is the applications root
>> package defined in the web.xml (Tapestry web application's root
>> components)
>>
>> Now, I have add custom components support for TapestryTools. It means
>> besides these components, TapestryTools support also custom components
>> with different prefix with "t:". It allow you to provide
>> autocompletion for custom components from different libraries, and we
>> have a nice editor in which developer enters mapping:
>>
>> x: org.example.components
>> y: org.acme.lib.components
>>
>> In this mapping, a library prefix is mapped to a component package.
>> So, every component from org.example.components package would have x
>> prefix. For example:
>>
>> <span t:type="x/MyComponent"></span>
>> <span t:type="y/Foo"></span>
>>
>> This feature is alreay available in TapestryTools' update site [1],
>> and you can find detailed guide about this feature and the "Custom
>> components mapping editor" here [2] (It is in Section 7).
>>
>> Looking forward to your feedbacks about TapestryTools and this new
>> feature, thanks.
>>
>> [1] http://tapestrytools.googlecode.com/svn/TapestryTools/
>> [2] http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


RE: Lightweight TapestryTools update site

Posted by "Athneria, Mahendra" <ma...@atos.net>.
Hi Gavin,

Thanks for the reply. It would be great if you can add that feature too. I want to see the list of components from jar to the auto complete list.

Thanks Gavin,

Regards,
Mahendra

-----Original Message-----
From: Gavin Lei [mailto:gavingui2011@gmail.com] 
Sent: Wednesday, August 08, 2012 6:54 PM
To: Tapestry users
Subject: Re: Lightweight TapestryTools update site

Hi Athneria,

This feature support only custom components in project's source
directory, not consider components in jars, maybe i should also add
jars support.

2012/8/7 Athneria, Mahendra <ma...@atos.net>:
> Hi Gavin,
>
> I took the update and trying to test the custom components support feature with different prefix.
> I have some doubts regarding the same.
>
> A) - We have a nice editor in which developer enters mapping :> - we can only edit the custom components by right click on the project. And when I click on (+) button I can only see the packages from my project only. I am not able to see the components package from different libraries. So how I can do the same. I tried to achieve the same by editing "components.tcc" file. Below is the example.
>
> <?xml version="1.0" encoding="UTF-8"?>
> <root>
> <packages>
> <package prefix="y" path="net.awl.tapestry5.kawwa.components"/> <!-- path is of components path of my libraries -->
> </packages>
> <components> <!-- Breadcrumb is components inside my libraries -->
> <component id="Breadcrumb" name="Breadcrumb" text="Breadcrumb" prefix="y" path="net.awl.tapestry5.kawwa.components"/>
> </components>
> </root>
>
> Even thought I am not able to get the " Breadcrumb " name when I press "ctrl+space" on tml file.
>
> Any idea Gavin??
>
> Regards,
> Mahendra Athneria
>
>
> -----Original Message-----
> From: Gavin Lei [mailto:gavingui2011@gmail.com]
> Sent: Monday, August 06, 2012 6:21 PM
> To: Tapestry users
> Cc: Igor Drobiazko
> Subject: Re: Lightweight TapestryTools update site
>
>
> Hi all,
>
> In TapestryTools' components auto-complete feature, by default only
> components defined in these two packages are in the list:
>
> 1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in components)
> 2.app-package.components, whereby app-package is the applications root
> package defined in the web.xml (Tapestry web application's root
> components)
>
> Now, I have add custom components support for TapestryTools. It means
> besides these components, TapestryTools support also custom components
> with different prefix with "t:". It allow you to provide
> autocompletion for custom components from different libraries, and we
> have a nice editor in which developer enters mapping:
>
> x: org.example.components
> y: org.acme.lib.components
>
> In this mapping, a library prefix is mapped to a component package.
> So, every component from org.example.components package would have x
> prefix. For example:
>
> <span t:type="x/MyComponent"></span>
> <span t:type="y/Foo"></span>
>
> This feature is alreay available in TapestryTools' update site [1],
> and you can find detailed guide about this feature and the "Custom
> components mapping editor" here [2] (It is in Section 7).
>
> Looking forward to your feedbacks about TapestryTools and this new
> feature, thanks.
>
> [1] http://tapestrytools.googlecode.com/svn/TapestryTools/
> [2] http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org

Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi Athneria,

This feature support only custom components in project's source
directory, not consider components in jars, maybe i should also add
jars support.

2012/8/7 Athneria, Mahendra <ma...@atos.net>:
> Hi Gavin,
>
> I took the update and trying to test the custom components support feature with different prefix.
> I have some doubts regarding the same.
>
> A) - We have a nice editor in which developer enters mapping :> - we can only edit the custom components by right click on the project. And when I click on (+) button I can only see the packages from my project only. I am not able to see the components package from different libraries. So how I can do the same. I tried to achieve the same by editing "components.tcc" file. Below is the example.
>
> <?xml version="1.0" encoding="UTF-8"?>
> <root>
> <packages>
> <package prefix="y" path="net.awl.tapestry5.kawwa.components"/> <!-- path is of components path of my libraries -->
> </packages>
> <components> <!-- Breadcrumb is components inside my libraries -->
> <component id="Breadcrumb" name="Breadcrumb" text="Breadcrumb" prefix="y" path="net.awl.tapestry5.kawwa.components"/>
> </components>
> </root>
>
> Even thought I am not able to get the " Breadcrumb " name when I press "ctrl+space" on tml file.
>
> Any idea Gavin??
>
> Regards,
> Mahendra Athneria
>
>
> -----Original Message-----
> From: Gavin Lei [mailto:gavingui2011@gmail.com]
> Sent: Monday, August 06, 2012 6:21 PM
> To: Tapestry users
> Cc: Igor Drobiazko
> Subject: Re: Lightweight TapestryTools update site
>
>
> Hi all,
>
> In TapestryTools' components auto-complete feature, by default only
> components defined in these two packages are in the list:
>
> 1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in components)
> 2.app-package.components, whereby app-package is the applications root
> package defined in the web.xml (Tapestry web application's root
> components)
>
> Now, I have add custom components support for TapestryTools. It means
> besides these components, TapestryTools support also custom components
> with different prefix with "t:". It allow you to provide
> autocompletion for custom components from different libraries, and we
> have a nice editor in which developer enters mapping:
>
> x: org.example.components
> y: org.acme.lib.components
>
> In this mapping, a library prefix is mapped to a component package.
> So, every component from org.example.components package would have x
> prefix. For example:
>
> <span t:type="x/MyComponent"></span>
> <span t:type="y/Foo"></span>
>
> This feature is alreay available in TapestryTools' update site [1],
> and you can find detailed guide about this feature and the "Custom
> components mapping editor" here [2] (It is in Section 7).
>
> Looking forward to your feedbacks about TapestryTools and this new
> feature, thanks.
>
> [1] http://tapestrytools.googlecode.com/svn/TapestryTools/
> [2] http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


RE: Lightweight TapestryTools update site

Posted by "Athneria, Mahendra" <ma...@atos.net>.
Hi Gavin,

I took the update and trying to test the custom components support feature with different prefix.
I have some doubts regarding the same.

A) - We have a nice editor in which developer enters mapping :> - we can only edit the custom components by right click on the project. And when I click on (+) button I can only see the packages from my project only. I am not able to see the components package from different libraries. So how I can do the same. I tried to achieve the same by editing "components.tcc" file. Below is the example.

<?xml version="1.0" encoding="UTF-8"?>
<root>
<packages>
<package prefix="y" path="net.awl.tapestry5.kawwa.components"/> <!-- path is of components path of my libraries -->
</packages>
<components> <!-- Breadcrumb is components inside my libraries -->
<component id="Breadcrumb" name="Breadcrumb" text="Breadcrumb" prefix="y" path="net.awl.tapestry5.kawwa.components"/>
</components>
</root>

Even thought I am not able to get the " Breadcrumb " name when I press "ctrl+space" on tml file.

Any idea Gavin??

Regards,
Mahendra Athneria


-----Original Message-----
From: Gavin Lei [mailto:gavingui2011@gmail.com] 
Sent: Monday, August 06, 2012 6:21 PM
To: Tapestry users
Cc: Igor Drobiazko
Subject: Re: Lightweight TapestryTools update site


Hi all,

In TapestryTools' components auto-complete feature, by default only
components defined in these two packages are in the list:

1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in components)
2.app-package.components, whereby app-package is the applications root
package defined in the web.xml (Tapestry web application's root
components)

Now, I have add custom components support for TapestryTools. It means
besides these components, TapestryTools support also custom components
with different prefix with "t:". It allow you to provide
autocompletion for custom components from different libraries, and we
have a nice editor in which developer enters mapping:

x: org.example.components
y: org.acme.lib.components

In this mapping, a library prefix is mapped to a component package.
So, every component from org.example.components package would have x
prefix. For example:

<span t:type="x/MyComponent"></span>
<span t:type="y/Foo"></span>

This feature is alreay available in TapestryTools' update site [1],
and you can find detailed guide about this feature and the "Custom
components mapping editor" here [2] (It is in Section 7).

Looking forward to your feedbacks about TapestryTools and this new
feature, thanks.

[1] http://tapestrytools.googlecode.com/svn/TapestryTools/
[2] http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org

Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi all,

In TapestryTools' components auto-complete feature, by default only
components defined in these two packages are in the list:

1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in components)
2.app-package.components, whereby app-package is the applications root
package defined in the web.xml (Tapestry web application's root
components)

Now, I have add custom components support for TapestryTools. It means
besides these components, TapestryTools support also custom components
with different prefix with "t:". It allow you to provide
autocompletion for custom components from different libraries, and we
have a nice editor in which developer enters mapping:

x: org.example.components
y: org.acme.lib.components

In this mapping, a library prefix is mapped to a component package.
So, every component from org.example.components package would have x
prefix. For example:

<span t:type="x/MyComponent"></span>
<span t:type="y/Foo"></span>

This feature is alreay available in TapestryTools' update site [1],
and you can find detailed guide about this feature and the "Custom
components mapping editor" here [2] (It is in Section 7).

Looking forward to your feedbacks about TapestryTools and this new
feature, thanks.

[1] http://tapestrytools.googlecode.com/svn/TapestryTools/
[2] http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by jqzone <jq...@gmail.com>.
I just installed Tapestry Tools on Juno EE version.
Installs fine.
Green icon for .tml files works fine.
Suggestion for variable expansion  in tml file *does not* works fine...

On Tue, Jul 24, 2012 at 8:23 AM, Chris Mylonas <ch...@opencsta.org> wrote:

> Hi Gavin,
>
> I just installed Tapestry Tools on Juno EE version.
> Installs fine.
> Green icon for .tml files works fine.
> Suggestion for variable expansion (ctrl space) in tml file works fine.
>
> Haven't tested anything else.
> OSX 10.6 Juno EE
>
> Great work!
>
> Cheers
> Chris
>
> On 24/07/2012, at 1:45 AM, Nicolas Barrera wrote:
>
> > Hi Gavin,
> >
> > I 've just tested with a clean new installation of juno *CLASSIC* and It
> > works like a charm,
> >
> > last time I was testing with Juno for Java developers. So I think that
> was
> > the problem.., stick to Eclipse Classic!
> >
> > thanks again and sorry for the inconvenience,
> >
> > cheers!
> >
> > Nicolás.-
> >
> >
> > On Mon, Jul 23, 2012 at 6:09 AM, Gavin Lei <ga...@gmail.com>
> wrote:
> >
> >> Hi Nicolas,
> >>
> >> I have not UBuntu environment, but it works well in Mac. I want to
> >> confirm what your problem is:
> >> 1. Can not see auto-complete panel in TML editor at all.
> >> 2. Can see auto-complete panel, but can not find Tapestry components in
> it.
> >>
> >> If it is problem 1, you should find out how to pop up auto-complete
> >> panel in your Eclipse.
> >>
> >> Thanks
> >>
> >> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> >>> I 'm running Ubuntu 12.04 LTS
> >>>
> >>> so it's woking for you in your environment :S, I 'm afraid I 'm doing
> >>> something wrong...
> >>>
> >>> perhaps someone else has already test it in a linux environment and can
> >>> tell us,
> >>>
> >>> well If you get to know about an issue and fix it please send an
> >>> announcement here.
> >>>
> >>> thanks, and cheers
> >>>
> >>> Nicolás.-
> >>>
> >>>
> >>> On Wed, Jul 18, 2012 at 12:16 PM, Gavin Lei <ga...@gmail.com>
> >> wrote:
> >>>
> >>>> Thanks for your work, Nicolas :-)
> >>>>
> >>>> You are in Windows or Mac? I will double check this issue. In my test
> >>>> of Eclipse Juno in Win 7, everything works well. If it appears here, i
> >>>> will fix it soon.
> >>>>
> >>>> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> >>>>> Hi Gavin,
> >>>>>
> >>>>> thanks for the quick
> >>>>>
> >>>>> As I told you I 'm using maven and I was careful that *through maven*
> >>>>> tapestry-core*.jar was included as a dependency.
> >>>>>
> >>>>> Anyway as you told me to double check that, I 've manually added in
> >> build
> >>>>> path configuration the tapestry-core*.jar and the behaviour is still
> >> the
> >>>>> same... no auto-complete.
> >>>>>
> >>>>> I thought that perhaps maven was bringing in some trouble so I
> >> decided to
> >>>>> start a new java web project, added tapetsry-core*.jar to the java
> >> build
> >>>>> path library configuration, created a page using tapestrytools'
> >> wizard,
> >>>>> added a
> >>>>> @Property
> >>>>> String hello;
> >>>>> variable to the .java class... but that property isn't auto-completed
> >>>>> within the tml editor when hitting ${ctrl+space, nor are tapestry
> core
> >>>>> components when hitting <t:ctrl+space
> >>>>>
> >>>>> In TML Editor if I click on "design" view it says:
> >>>>> The document is empty. Right mouse click here to insert content.
> >>>>>
> >>>>> But, right clicking does nothing... and above that when switching to
> >>>> source
> >>>>> I see that the document is NOT empty but has this content:
> >>>>>
> >>>>>> <html  xmlns:t="
> http://tapestry.apache.org/schema/tapestry_5_1_0.xsd
> >> ">
> >>>>>> <body>
> >>>>>>
> >>>>>> </body>
> >>>>>> </html>
> >>>>>>
> >>>>>
> >>>>> Hope I 'm helping with some clues...
> >>>>>
> >>>>> regards,
> >>>>>
> >>>>> Nicolás.-
> >>>>>
> >>>>>
> >>>>> On Wed, Jul 18, 2012 at 10:47 AM, Gavin Lei <ga...@gmail.com>
> >>>> wrote:
> >>>>>
> >>>>>> Hi Nicolas,
> >>>>>>
> >>>>>> Thank you for your feedback, TapestryTools' auto-complete feature
> >> need
> >>>>>> tapestry-core-*.jar which contains
> >>>>>> "org.apache.tapestry5.corelib.components" in your eclipse project
> >>>>>> build path.
> >>>>>>
> >>>>>> I think this is not a Juno version issue, please check your build
> >>>>>> path. Right click project -> properties -> Java build path ->
> >>>>>> Libraries.
> >>>>>>
> >>>>>> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> >>>>>>> Hi Gavin,
> >>>>>>>
> >>>>>>> I wanted to ask this prior to open a new issue...
> >>>>>>>
> >>>>>>> I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno
> >>>> Version:
> >>>>>>> Juno Release / Build id: 20120614-1722
> >>>>>>>
> >>>>>>> and although tapestrytools seems to be working fine, auto-complete
> >>>>>> features
> >>>>>>> aren't popping out when writing <t:, nor responding when hitting
> >>>>>>> ctrl+space, alt+/
> >>>>>>>
> >>>>>>> I 'm using this maven archetype to generate the project where I 'm
> >>>>>>> exercising this test (groupId=org.apache.tapestry;
> >>>> artifactId=quickstart;
> >>>>>>> version=5.1.0.5) which depends on tapestry-core-5.1.0.5.jar I can
> >> see
> >>>>>> that
> >>>>>>> dependency right inside the "Maven Dependencies" Library of the
> >>>> project.
> >>>>>>>
> >>>>>>>
> >>>>>>> As I 've never tested tapestrytools in any other eclipse version so
> >>>>>> perhaps
> >>>>>>> I 'm doing something wrong and wanted to check with you before
> >>>>>> submitting a
> >>>>>>> new issue, do you think this may be an issue concerning Juno only?
> >>>>>>>
> >>>>>>> cheers and thanks!
> >>>>>>>
> >>>>>>> Nicolás.-
> >>>>>>>
> >>>>>>>
> >>>>>>> On Tue, Jul 17, 2012 at 9:49 AM, Gavin Lei <gavingui2011@gmail.com
> >>>
> >>>>>> wrote:
> >>>>>>>
> >>>>>>>> TapestryTools update at 2012-07-17:
> >>>>>>>>
> >>>>>>>> 1. Support Eclipse Juno now, the update site(both for Indigo and
> >>>> Juno)
> >>>>>>>> is still: http://tapestrytools.googlecode.com/svn/TapestryTools/
> >>>>>>>>
> >>>>>>>> 2.Finish basic feature of Issue
> >>>>>>>> 33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
> >>>>>>>> It means the list of components (include components parameters)
> >> used
> >>>>>>>> for autocompletion will read the component classes from package
> >>>>>>>> org.apache.tapestry5.corelib.components which included in
> >>>>>>>> tapestry-core-*.jar. If you do not have tapestry jars in your
> >> build
> >>>>>>>> path, TapestryTools' auto-complete feature will not work.
> >>>>>>>>
> >>>>>>>> 2012/7/1 Gavin Lei <ga...@gmail.com>:
> >>>>>>>>> Hi all,
> >>>>>>>>>
> >>>>>>>>> I have finished Tapestry component/page wizard feature for
> >>>>>>>>> TapestryTools, and fix issue 30. You guys can install and try
> >> the
> >>>> new
> >>>>>>>>> feature in version 1.0.0.201207011447 now.
> >>>>>>>>>
> >>>>>>>>> Install guide:
> >>>>>>>>
> >>>>>>
> >>>>
> >>
> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
> >>>>>>>>>
> >>>>>>>>> ---------------------------------
> >>>>>>>>> Best Regards
> >>>>>>>>> Gavin Lei (雷银)
> >>>>>>>>> Email: gavingui2011@gmail.com
> >>>>>>>>
> >>>>>>>>
> >>>>>>>>
> >>>>>>>> --
> >>>>>>>> ---------------------------------
> >>>>>>>> Best Regards
> >>>>>>>> Gavin Lei (雷银)
> >>>>>>>> Email: gavingui2011@gmail.com
> >>>>>>>>
> >>>>>>>>
> >> ---------------------------------------------------------------------
> >>>>>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >>>>>>>> For additional commands, e-mail: users-help@tapestry.apache.org
> >>>>>>>>
> >>>>>>>>
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>> --
> >>>>>> ---------------------------------
> >>>>>> Best Regards
> >>>>>> Gavin Lei (雷银)
> >>>>>> Email: gavingui2011@gmail.com
> >>>>>>
> >>>>>>
> ---------------------------------------------------------------------
> >>>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >>>>>> For additional commands, e-mail: users-help@tapestry.apache.org
> >>>>>>
> >>>>>>
> >>>>
> >>>>
> >>>>
> >>>> --
> >>>> ---------------------------------
> >>>> Best Regards
> >>>> Gavin Lei (雷银)
> >>>> Email: gavingui2011@gmail.com
> >>>>
> >>>> ---------------------------------------------------------------------
> >>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >>>> For additional commands, e-mail: users-help@tapestry.apache.org
> >>>>
> >>>>
> >>
> >>
> >>
> >> --
> >> ---------------------------------
> >> Best Regards
> >> Gavin Lei (雷银)
> >> Email: gavingui2011@gmail.com
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >>
> >>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Lightweight TapestryTools update site

Posted by Chris Mylonas <ch...@opencsta.org>.
Hi Gavin,

I just installed Tapestry Tools on Juno EE version.
Installs fine.
Green icon for .tml files works fine.
Suggestion for variable expansion (ctrl space) in tml file works fine.

Haven't tested anything else.
OSX 10.6 Juno EE

Great work!

Cheers
Chris

On 24/07/2012, at 1:45 AM, Nicolas Barrera wrote:

> Hi Gavin,
> 
> I 've just tested with a clean new installation of juno *CLASSIC* and It
> works like a charm,
> 
> last time I was testing with Juno for Java developers. So I think that was
> the problem.., stick to Eclipse Classic!
> 
> thanks again and sorry for the inconvenience,
> 
> cheers!
> 
> Nicolás.-
> 
> 
> On Mon, Jul 23, 2012 at 6:09 AM, Gavin Lei <ga...@gmail.com> wrote:
> 
>> Hi Nicolas,
>> 
>> I have not UBuntu environment, but it works well in Mac. I want to
>> confirm what your problem is:
>> 1. Can not see auto-complete panel in TML editor at all.
>> 2. Can see auto-complete panel, but can not find Tapestry components in it.
>> 
>> If it is problem 1, you should find out how to pop up auto-complete
>> panel in your Eclipse.
>> 
>> Thanks
>> 
>> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
>>> I 'm running Ubuntu 12.04 LTS
>>> 
>>> so it's woking for you in your environment :S, I 'm afraid I 'm doing
>>> something wrong...
>>> 
>>> perhaps someone else has already test it in a linux environment and can
>>> tell us,
>>> 
>>> well If you get to know about an issue and fix it please send an
>>> announcement here.
>>> 
>>> thanks, and cheers
>>> 
>>> Nicolás.-
>>> 
>>> 
>>> On Wed, Jul 18, 2012 at 12:16 PM, Gavin Lei <ga...@gmail.com>
>> wrote:
>>> 
>>>> Thanks for your work, Nicolas :-)
>>>> 
>>>> You are in Windows or Mac? I will double check this issue. In my test
>>>> of Eclipse Juno in Win 7, everything works well. If it appears here, i
>>>> will fix it soon.
>>>> 
>>>> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
>>>>> Hi Gavin,
>>>>> 
>>>>> thanks for the quick
>>>>> 
>>>>> As I told you I 'm using maven and I was careful that *through maven*
>>>>> tapestry-core*.jar was included as a dependency.
>>>>> 
>>>>> Anyway as you told me to double check that, I 've manually added in
>> build
>>>>> path configuration the tapestry-core*.jar and the behaviour is still
>> the
>>>>> same... no auto-complete.
>>>>> 
>>>>> I thought that perhaps maven was bringing in some trouble so I
>> decided to
>>>>> start a new java web project, added tapetsry-core*.jar to the java
>> build
>>>>> path library configuration, created a page using tapestrytools'
>> wizard,
>>>>> added a
>>>>> @Property
>>>>> String hello;
>>>>> variable to the .java class... but that property isn't auto-completed
>>>>> within the tml editor when hitting ${ctrl+space, nor are tapestry core
>>>>> components when hitting <t:ctrl+space
>>>>> 
>>>>> In TML Editor if I click on "design" view it says:
>>>>> The document is empty. Right mouse click here to insert content.
>>>>> 
>>>>> But, right clicking does nothing... and above that when switching to
>>>> source
>>>>> I see that the document is NOT empty but has this content:
>>>>> 
>>>>>> <html  xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd
>> ">
>>>>>> <body>
>>>>>> 
>>>>>> </body>
>>>>>> </html>
>>>>>> 
>>>>> 
>>>>> Hope I 'm helping with some clues...
>>>>> 
>>>>> regards,
>>>>> 
>>>>> Nicolás.-
>>>>> 
>>>>> 
>>>>> On Wed, Jul 18, 2012 at 10:47 AM, Gavin Lei <ga...@gmail.com>
>>>> wrote:
>>>>> 
>>>>>> Hi Nicolas,
>>>>>> 
>>>>>> Thank you for your feedback, TapestryTools' auto-complete feature
>> need
>>>>>> tapestry-core-*.jar which contains
>>>>>> "org.apache.tapestry5.corelib.components" in your eclipse project
>>>>>> build path.
>>>>>> 
>>>>>> I think this is not a Juno version issue, please check your build
>>>>>> path. Right click project -> properties -> Java build path ->
>>>>>> Libraries.
>>>>>> 
>>>>>> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
>>>>>>> Hi Gavin,
>>>>>>> 
>>>>>>> I wanted to ask this prior to open a new issue...
>>>>>>> 
>>>>>>> I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno
>>>> Version:
>>>>>>> Juno Release / Build id: 20120614-1722
>>>>>>> 
>>>>>>> and although tapestrytools seems to be working fine, auto-complete
>>>>>> features
>>>>>>> aren't popping out when writing <t:, nor responding when hitting
>>>>>>> ctrl+space, alt+/
>>>>>>> 
>>>>>>> I 'm using this maven archetype to generate the project where I 'm
>>>>>>> exercising this test (groupId=org.apache.tapestry;
>>>> artifactId=quickstart;
>>>>>>> version=5.1.0.5) which depends on tapestry-core-5.1.0.5.jar I can
>> see
>>>>>> that
>>>>>>> dependency right inside the "Maven Dependencies" Library of the
>>>> project.
>>>>>>> 
>>>>>>> 
>>>>>>> As I 've never tested tapestrytools in any other eclipse version so
>>>>>> perhaps
>>>>>>> I 'm doing something wrong and wanted to check with you before
>>>>>> submitting a
>>>>>>> new issue, do you think this may be an issue concerning Juno only?
>>>>>>> 
>>>>>>> cheers and thanks!
>>>>>>> 
>>>>>>> Nicolás.-
>>>>>>> 
>>>>>>> 
>>>>>>> On Tue, Jul 17, 2012 at 9:49 AM, Gavin Lei <gavingui2011@gmail.com
>>> 
>>>>>> wrote:
>>>>>>> 
>>>>>>>> TapestryTools update at 2012-07-17:
>>>>>>>> 
>>>>>>>> 1. Support Eclipse Juno now, the update site(both for Indigo and
>>>> Juno)
>>>>>>>> is still: http://tapestrytools.googlecode.com/svn/TapestryTools/
>>>>>>>> 
>>>>>>>> 2.Finish basic feature of Issue
>>>>>>>> 33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
>>>>>>>> It means the list of components (include components parameters)
>> used
>>>>>>>> for autocompletion will read the component classes from package
>>>>>>>> org.apache.tapestry5.corelib.components which included in
>>>>>>>> tapestry-core-*.jar. If you do not have tapestry jars in your
>> build
>>>>>>>> path, TapestryTools' auto-complete feature will not work.
>>>>>>>> 
>>>>>>>> 2012/7/1 Gavin Lei <ga...@gmail.com>:
>>>>>>>>> Hi all,
>>>>>>>>> 
>>>>>>>>> I have finished Tapestry component/page wizard feature for
>>>>>>>>> TapestryTools, and fix issue 30. You guys can install and try
>> the
>>>> new
>>>>>>>>> feature in version 1.0.0.201207011447 now.
>>>>>>>>> 
>>>>>>>>> Install guide:
>>>>>>>> 
>>>>>> 
>>>> 
>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>>>>>>>>> 
>>>>>>>>> ---------------------------------
>>>>>>>>> Best Regards
>>>>>>>>> Gavin Lei (雷银)
>>>>>>>>> Email: gavingui2011@gmail.com
>>>>>>>> 
>>>>>>>> 
>>>>>>>> 
>>>>>>>> --
>>>>>>>> ---------------------------------
>>>>>>>> Best Regards
>>>>>>>> Gavin Lei (雷银)
>>>>>>>> Email: gavingui2011@gmail.com
>>>>>>>> 
>>>>>>>> 
>> ---------------------------------------------------------------------
>>>>>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>>>>>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>>>>>> 
>>>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> --
>>>>>> ---------------------------------
>>>>>> Best Regards
>>>>>> Gavin Lei (雷银)
>>>>>> Email: gavingui2011@gmail.com
>>>>>> 
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>>>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>>>> 
>>>>>> 
>>>> 
>>>> 
>>>> 
>>>> --
>>>> ---------------------------------
>>>> Best Regards
>>>> Gavin Lei (雷银)
>>>> Email: gavingui2011@gmail.com
>>>> 
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>> 
>>>> 
>> 
>> 
>> 
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>> 
>> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Nicolas Barrera <nb...@gmail.com>.
Hi Gavin,

I 've just tested with a clean new installation of juno *CLASSIC* and It
works like a charm,

last time I was testing with Juno for Java developers. So I think that was
the problem.., stick to Eclipse Classic!

thanks again and sorry for the inconvenience,

cheers!

Nicolás.-


On Mon, Jul 23, 2012 at 6:09 AM, Gavin Lei <ga...@gmail.com> wrote:

> Hi Nicolas,
>
> I have not UBuntu environment, but it works well in Mac. I want to
> confirm what your problem is:
> 1. Can not see auto-complete panel in TML editor at all.
> 2. Can see auto-complete panel, but can not find Tapestry components in it.
>
> If it is problem 1, you should find out how to pop up auto-complete
> panel in your Eclipse.
>
> Thanks
>
> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> > I 'm running Ubuntu 12.04 LTS
> >
> > so it's woking for you in your environment :S, I 'm afraid I 'm doing
> > something wrong...
> >
> > perhaps someone else has already test it in a linux environment and can
> > tell us,
> >
> > well If you get to know about an issue and fix it please send an
> > announcement here.
> >
> > thanks, and cheers
> >
> > Nicolás.-
> >
> >
> > On Wed, Jul 18, 2012 at 12:16 PM, Gavin Lei <ga...@gmail.com>
> wrote:
> >
> >> Thanks for your work, Nicolas :-)
> >>
> >> You are in Windows or Mac? I will double check this issue. In my test
> >> of Eclipse Juno in Win 7, everything works well. If it appears here, i
> >> will fix it soon.
> >>
> >> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> >> > Hi Gavin,
> >> >
> >> > thanks for the quick
> >> >
> >> > As I told you I 'm using maven and I was careful that *through maven*
> >> > tapestry-core*.jar was included as a dependency.
> >> >
> >> > Anyway as you told me to double check that, I 've manually added in
> build
> >> > path configuration the tapestry-core*.jar and the behaviour is still
> the
> >> > same... no auto-complete.
> >> >
> >> > I thought that perhaps maven was bringing in some trouble so I
> decided to
> >> > start a new java web project, added tapetsry-core*.jar to the java
> build
> >> > path library configuration, created a page using tapestrytools'
> wizard,
> >> > added a
> >> > @Property
> >> > String hello;
> >> > variable to the .java class... but that property isn't auto-completed
> >> > within the tml editor when hitting ${ctrl+space, nor are tapestry core
> >> > components when hitting <t:ctrl+space
> >> >
> >> > In TML Editor if I click on "design" view it says:
> >> > The document is empty. Right mouse click here to insert content.
> >> >
> >> > But, right clicking does nothing... and above that when switching to
> >> source
> >> > I see that the document is NOT empty but has this content:
> >> >
> >> >> <html  xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd
> ">
> >> >> <body>
> >> >>
> >> >> </body>
> >> >> </html>
> >> >>
> >> >
> >> > Hope I 'm helping with some clues...
> >> >
> >> > regards,
> >> >
> >> > Nicolás.-
> >> >
> >> >
> >> > On Wed, Jul 18, 2012 at 10:47 AM, Gavin Lei <ga...@gmail.com>
> >> wrote:
> >> >
> >> >> Hi Nicolas,
> >> >>
> >> >> Thank you for your feedback, TapestryTools' auto-complete feature
> need
> >> >> tapestry-core-*.jar which contains
> >> >> "org.apache.tapestry5.corelib.components" in your eclipse project
> >> >> build path.
> >> >>
> >> >> I think this is not a Juno version issue, please check your build
> >> >> path. Right click project -> properties -> Java build path ->
> >> >> Libraries.
> >> >>
> >> >> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> >> >> > Hi Gavin,
> >> >> >
> >> >> > I wanted to ask this prior to open a new issue...
> >> >> >
> >> >> > I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno
> >> Version:
> >> >> > Juno Release / Build id: 20120614-1722
> >> >> >
> >> >> > and although tapestrytools seems to be working fine, auto-complete
> >> >> features
> >> >> > aren't popping out when writing <t:, nor responding when hitting
> >> >> > ctrl+space, alt+/
> >> >> >
> >> >> > I 'm using this maven archetype to generate the project where I 'm
> >> >> > exercising this test (groupId=org.apache.tapestry;
> >> artifactId=quickstart;
> >> >> > version=5.1.0.5) which depends on tapestry-core-5.1.0.5.jar I can
> see
> >> >> that
> >> >> > dependency right inside the "Maven Dependencies" Library of the
> >> project.
> >> >> >
> >> >> >
> >> >> > As I 've never tested tapestrytools in any other eclipse version so
> >> >> perhaps
> >> >> > I 'm doing something wrong and wanted to check with you before
> >> >> submitting a
> >> >> > new issue, do you think this may be an issue concerning Juno only?
> >> >> >
> >> >> > cheers and thanks!
> >> >> >
> >> >> > Nicolás.-
> >> >> >
> >> >> >
> >> >> > On Tue, Jul 17, 2012 at 9:49 AM, Gavin Lei <gavingui2011@gmail.com
> >
> >> >> wrote:
> >> >> >
> >> >> >> TapestryTools update at 2012-07-17:
> >> >> >>
> >> >> >> 1. Support Eclipse Juno now, the update site(both for Indigo and
> >> Juno)
> >> >> >> is still: http://tapestrytools.googlecode.com/svn/TapestryTools/
> >> >> >>
> >> >> >> 2.Finish basic feature of Issue
> >> >> >> 33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
> >> >> >>  It means the list of components (include components parameters)
> used
> >> >> >> for autocompletion will read the component classes from package
> >> >> >> org.apache.tapestry5.corelib.components which included in
> >> >> >> tapestry-core-*.jar. If you do not have tapestry jars in your
> build
> >> >> >> path, TapestryTools' auto-complete feature will not work.
> >> >> >>
> >> >> >> 2012/7/1 Gavin Lei <ga...@gmail.com>:
> >> >> >> > Hi all,
> >> >> >> >
> >> >> >> > I have finished Tapestry component/page wizard feature for
> >> >> >> > TapestryTools, and fix issue 30. You guys can install and try
> the
> >> new
> >> >> >> > feature in version 1.0.0.201207011447 now.
> >> >> >> >
> >> >> >> > Install guide:
> >> >> >>
> >> >>
> >>
> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
> >> >> >> >
> >> >> >> > ---------------------------------
> >> >> >> > Best Regards
> >> >> >> > Gavin Lei (雷银)
> >> >> >> > Email: gavingui2011@gmail.com
> >> >> >>
> >> >> >>
> >> >> >>
> >> >> >> --
> >> >> >> ---------------------------------
> >> >> >> Best Regards
> >> >> >> Gavin Lei (雷银)
> >> >> >> Email: gavingui2011@gmail.com
> >> >> >>
> >> >> >>
> ---------------------------------------------------------------------
> >> >> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> >> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >> >> >>
> >> >> >>
> >> >>
> >> >>
> >> >>
> >> >> --
> >> >> ---------------------------------
> >> >> Best Regards
> >> >> Gavin Lei (雷银)
> >> >> Email: gavingui2011@gmail.com
> >> >>
> >> >> ---------------------------------------------------------------------
> >> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >> >>
> >> >>
> >>
> >>
> >>
> >> --
> >> ---------------------------------
> >> Best Regards
> >> Gavin Lei (雷银)
> >> Email: gavingui2011@gmail.com
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >>
> >>
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi Nicolas,

I have not UBuntu environment, but it works well in Mac. I want to
confirm what your problem is:
1. Can not see auto-complete panel in TML editor at all.
2. Can see auto-complete panel, but can not find Tapestry components in it.

If it is problem 1, you should find out how to pop up auto-complete
panel in your Eclipse.

Thanks

2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> I 'm running Ubuntu 12.04 LTS
>
> so it's woking for you in your environment :S, I 'm afraid I 'm doing
> something wrong...
>
> perhaps someone else has already test it in a linux environment and can
> tell us,
>
> well If you get to know about an issue and fix it please send an
> announcement here.
>
> thanks, and cheers
>
> Nicolás.-
>
>
> On Wed, Jul 18, 2012 at 12:16 PM, Gavin Lei <ga...@gmail.com> wrote:
>
>> Thanks for your work, Nicolas :-)
>>
>> You are in Windows or Mac? I will double check this issue. In my test
>> of Eclipse Juno in Win 7, everything works well. If it appears here, i
>> will fix it soon.
>>
>> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
>> > Hi Gavin,
>> >
>> > thanks for the quick
>> >
>> > As I told you I 'm using maven and I was careful that *through maven*
>> > tapestry-core*.jar was included as a dependency.
>> >
>> > Anyway as you told me to double check that, I 've manually added in build
>> > path configuration the tapestry-core*.jar and the behaviour is still the
>> > same... no auto-complete.
>> >
>> > I thought that perhaps maven was bringing in some trouble so I decided to
>> > start a new java web project, added tapetsry-core*.jar to the java build
>> > path library configuration, created a page using tapestrytools' wizard,
>> > added a
>> > @Property
>> > String hello;
>> > variable to the .java class... but that property isn't auto-completed
>> > within the tml editor when hitting ${ctrl+space, nor are tapestry core
>> > components when hitting <t:ctrl+space
>> >
>> > In TML Editor if I click on "design" view it says:
>> > The document is empty. Right mouse click here to insert content.
>> >
>> > But, right clicking does nothing... and above that when switching to
>> source
>> > I see that the document is NOT empty but has this content:
>> >
>> >> <html  xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd">
>> >> <body>
>> >>
>> >> </body>
>> >> </html>
>> >>
>> >
>> > Hope I 'm helping with some clues...
>> >
>> > regards,
>> >
>> > Nicolás.-
>> >
>> >
>> > On Wed, Jul 18, 2012 at 10:47 AM, Gavin Lei <ga...@gmail.com>
>> wrote:
>> >
>> >> Hi Nicolas,
>> >>
>> >> Thank you for your feedback, TapestryTools' auto-complete feature need
>> >> tapestry-core-*.jar which contains
>> >> "org.apache.tapestry5.corelib.components" in your eclipse project
>> >> build path.
>> >>
>> >> I think this is not a Juno version issue, please check your build
>> >> path. Right click project -> properties -> Java build path ->
>> >> Libraries.
>> >>
>> >> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
>> >> > Hi Gavin,
>> >> >
>> >> > I wanted to ask this prior to open a new issue...
>> >> >
>> >> > I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno
>> Version:
>> >> > Juno Release / Build id: 20120614-1722
>> >> >
>> >> > and although tapestrytools seems to be working fine, auto-complete
>> >> features
>> >> > aren't popping out when writing <t:, nor responding when hitting
>> >> > ctrl+space, alt+/
>> >> >
>> >> > I 'm using this maven archetype to generate the project where I 'm
>> >> > exercising this test (groupId=org.apache.tapestry;
>> artifactId=quickstart;
>> >> > version=5.1.0.5) which depends on tapestry-core-5.1.0.5.jar I can see
>> >> that
>> >> > dependency right inside the "Maven Dependencies" Library of the
>> project.
>> >> >
>> >> >
>> >> > As I 've never tested tapestrytools in any other eclipse version so
>> >> perhaps
>> >> > I 'm doing something wrong and wanted to check with you before
>> >> submitting a
>> >> > new issue, do you think this may be an issue concerning Juno only?
>> >> >
>> >> > cheers and thanks!
>> >> >
>> >> > Nicolás.-
>> >> >
>> >> >
>> >> > On Tue, Jul 17, 2012 at 9:49 AM, Gavin Lei <ga...@gmail.com>
>> >> wrote:
>> >> >
>> >> >> TapestryTools update at 2012-07-17:
>> >> >>
>> >> >> 1. Support Eclipse Juno now, the update site(both for Indigo and
>> Juno)
>> >> >> is still: http://tapestrytools.googlecode.com/svn/TapestryTools/
>> >> >>
>> >> >> 2.Finish basic feature of Issue
>> >> >> 33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
>> >> >>  It means the list of components (include components parameters) used
>> >> >> for autocompletion will read the component classes from package
>> >> >> org.apache.tapestry5.corelib.components which included in
>> >> >> tapestry-core-*.jar. If you do not have tapestry jars in your build
>> >> >> path, TapestryTools' auto-complete feature will not work.
>> >> >>
>> >> >> 2012/7/1 Gavin Lei <ga...@gmail.com>:
>> >> >> > Hi all,
>> >> >> >
>> >> >> > I have finished Tapestry component/page wizard feature for
>> >> >> > TapestryTools, and fix issue 30. You guys can install and try the
>> new
>> >> >> > feature in version 1.0.0.201207011447 now.
>> >> >> >
>> >> >> > Install guide:
>> >> >>
>> >>
>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>> >> >> >
>> >> >> > ---------------------------------
>> >> >> > Best Regards
>> >> >> > Gavin Lei (雷银)
>> >> >> > Email: gavingui2011@gmail.com
>> >> >>
>> >> >>
>> >> >>
>> >> >> --
>> >> >> ---------------------------------
>> >> >> Best Regards
>> >> >> Gavin Lei (雷银)
>> >> >> Email: gavingui2011@gmail.com
>> >> >>
>> >> >> ---------------------------------------------------------------------
>> >> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> >> >> For additional commands, e-mail: users-help@tapestry.apache.org
>> >> >>
>> >> >>
>> >>
>> >>
>> >>
>> >> --
>> >> ---------------------------------
>> >> Best Regards
>> >> Gavin Lei (雷银)
>> >> Email: gavingui2011@gmail.com
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> >> For additional commands, e-mail: users-help@tapestry.apache.org
>> >>
>> >>
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Nicolas Barrera <nb...@gmail.com>.
I 'm running Ubuntu 12.04 LTS

so it's woking for you in your environment :S, I 'm afraid I 'm doing
something wrong...

perhaps someone else has already test it in a linux environment and can
tell us,

well If you get to know about an issue and fix it please send an
announcement here.

thanks, and cheers

Nicolás.-


On Wed, Jul 18, 2012 at 12:16 PM, Gavin Lei <ga...@gmail.com> wrote:

> Thanks for your work, Nicolas :-)
>
> You are in Windows or Mac? I will double check this issue. In my test
> of Eclipse Juno in Win 7, everything works well. If it appears here, i
> will fix it soon.
>
> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> > Hi Gavin,
> >
> > thanks for the quick
> >
> > As I told you I 'm using maven and I was careful that *through maven*
> > tapestry-core*.jar was included as a dependency.
> >
> > Anyway as you told me to double check that, I 've manually added in build
> > path configuration the tapestry-core*.jar and the behaviour is still the
> > same... no auto-complete.
> >
> > I thought that perhaps maven was bringing in some trouble so I decided to
> > start a new java web project, added tapetsry-core*.jar to the java build
> > path library configuration, created a page using tapestrytools' wizard,
> > added a
> > @Property
> > String hello;
> > variable to the .java class... but that property isn't auto-completed
> > within the tml editor when hitting ${ctrl+space, nor are tapestry core
> > components when hitting <t:ctrl+space
> >
> > In TML Editor if I click on "design" view it says:
> > The document is empty. Right mouse click here to insert content.
> >
> > But, right clicking does nothing... and above that when switching to
> source
> > I see that the document is NOT empty but has this content:
> >
> >> <html  xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd">
> >> <body>
> >>
> >> </body>
> >> </html>
> >>
> >
> > Hope I 'm helping with some clues...
> >
> > regards,
> >
> > Nicolás.-
> >
> >
> > On Wed, Jul 18, 2012 at 10:47 AM, Gavin Lei <ga...@gmail.com>
> wrote:
> >
> >> Hi Nicolas,
> >>
> >> Thank you for your feedback, TapestryTools' auto-complete feature need
> >> tapestry-core-*.jar which contains
> >> "org.apache.tapestry5.corelib.components" in your eclipse project
> >> build path.
> >>
> >> I think this is not a Juno version issue, please check your build
> >> path. Right click project -> properties -> Java build path ->
> >> Libraries.
> >>
> >> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> >> > Hi Gavin,
> >> >
> >> > I wanted to ask this prior to open a new issue...
> >> >
> >> > I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno
> Version:
> >> > Juno Release / Build id: 20120614-1722
> >> >
> >> > and although tapestrytools seems to be working fine, auto-complete
> >> features
> >> > aren't popping out when writing <t:, nor responding when hitting
> >> > ctrl+space, alt+/
> >> >
> >> > I 'm using this maven archetype to generate the project where I 'm
> >> > exercising this test (groupId=org.apache.tapestry;
> artifactId=quickstart;
> >> > version=5.1.0.5) which depends on tapestry-core-5.1.0.5.jar I can see
> >> that
> >> > dependency right inside the "Maven Dependencies" Library of the
> project.
> >> >
> >> >
> >> > As I 've never tested tapestrytools in any other eclipse version so
> >> perhaps
> >> > I 'm doing something wrong and wanted to check with you before
> >> submitting a
> >> > new issue, do you think this may be an issue concerning Juno only?
> >> >
> >> > cheers and thanks!
> >> >
> >> > Nicolás.-
> >> >
> >> >
> >> > On Tue, Jul 17, 2012 at 9:49 AM, Gavin Lei <ga...@gmail.com>
> >> wrote:
> >> >
> >> >> TapestryTools update at 2012-07-17:
> >> >>
> >> >> 1. Support Eclipse Juno now, the update site(both for Indigo and
> Juno)
> >> >> is still: http://tapestrytools.googlecode.com/svn/TapestryTools/
> >> >>
> >> >> 2.Finish basic feature of Issue
> >> >> 33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
> >> >>  It means the list of components (include components parameters) used
> >> >> for autocompletion will read the component classes from package
> >> >> org.apache.tapestry5.corelib.components which included in
> >> >> tapestry-core-*.jar. If you do not have tapestry jars in your build
> >> >> path, TapestryTools' auto-complete feature will not work.
> >> >>
> >> >> 2012/7/1 Gavin Lei <ga...@gmail.com>:
> >> >> > Hi all,
> >> >> >
> >> >> > I have finished Tapestry component/page wizard feature for
> >> >> > TapestryTools, and fix issue 30. You guys can install and try the
> new
> >> >> > feature in version 1.0.0.201207011447 now.
> >> >> >
> >> >> > Install guide:
> >> >>
> >>
> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
> >> >> >
> >> >> > ---------------------------------
> >> >> > Best Regards
> >> >> > Gavin Lei (雷银)
> >> >> > Email: gavingui2011@gmail.com
> >> >>
> >> >>
> >> >>
> >> >> --
> >> >> ---------------------------------
> >> >> Best Regards
> >> >> Gavin Lei (雷银)
> >> >> Email: gavingui2011@gmail.com
> >> >>
> >> >> ---------------------------------------------------------------------
> >> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >> >>
> >> >>
> >>
> >>
> >>
> >> --
> >> ---------------------------------
> >> Best Regards
> >> Gavin Lei (雷银)
> >> Email: gavingui2011@gmail.com
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >>
> >>
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Thanks for your work, Nicolas :-)

You are in Windows or Mac? I will double check this issue. In my test
of Eclipse Juno in Win 7, everything works well. If it appears here, i
will fix it soon.

2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> Hi Gavin,
>
> thanks for the quick
>
> As I told you I 'm using maven and I was careful that *through maven*
> tapestry-core*.jar was included as a dependency.
>
> Anyway as you told me to double check that, I 've manually added in build
> path configuration the tapestry-core*.jar and the behaviour is still the
> same... no auto-complete.
>
> I thought that perhaps maven was bringing in some trouble so I decided to
> start a new java web project, added tapetsry-core*.jar to the java build
> path library configuration, created a page using tapestrytools' wizard,
> added a
> @Property
> String hello;
> variable to the .java class... but that property isn't auto-completed
> within the tml editor when hitting ${ctrl+space, nor are tapestry core
> components when hitting <t:ctrl+space
>
> In TML Editor if I click on "design" view it says:
> The document is empty. Right mouse click here to insert content.
>
> But, right clicking does nothing... and above that when switching to source
> I see that the document is NOT empty but has this content:
>
>> <html  xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd">
>> <body>
>>
>> </body>
>> </html>
>>
>
> Hope I 'm helping with some clues...
>
> regards,
>
> Nicolás.-
>
>
> On Wed, Jul 18, 2012 at 10:47 AM, Gavin Lei <ga...@gmail.com> wrote:
>
>> Hi Nicolas,
>>
>> Thank you for your feedback, TapestryTools' auto-complete feature need
>> tapestry-core-*.jar which contains
>> "org.apache.tapestry5.corelib.components" in your eclipse project
>> build path.
>>
>> I think this is not a Juno version issue, please check your build
>> path. Right click project -> properties -> Java build path ->
>> Libraries.
>>
>> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
>> > Hi Gavin,
>> >
>> > I wanted to ask this prior to open a new issue...
>> >
>> > I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno Version:
>> > Juno Release / Build id: 20120614-1722
>> >
>> > and although tapestrytools seems to be working fine, auto-complete
>> features
>> > aren't popping out when writing <t:, nor responding when hitting
>> > ctrl+space, alt+/
>> >
>> > I 'm using this maven archetype to generate the project where I 'm
>> > exercising this test (groupId=org.apache.tapestry; artifactId=quickstart;
>> > version=5.1.0.5) which depends on tapestry-core-5.1.0.5.jar I can see
>> that
>> > dependency right inside the "Maven Dependencies" Library of the project.
>> >
>> >
>> > As I 've never tested tapestrytools in any other eclipse version so
>> perhaps
>> > I 'm doing something wrong and wanted to check with you before
>> submitting a
>> > new issue, do you think this may be an issue concerning Juno only?
>> >
>> > cheers and thanks!
>> >
>> > Nicolás.-
>> >
>> >
>> > On Tue, Jul 17, 2012 at 9:49 AM, Gavin Lei <ga...@gmail.com>
>> wrote:
>> >
>> >> TapestryTools update at 2012-07-17:
>> >>
>> >> 1. Support Eclipse Juno now, the update site(both for Indigo and Juno)
>> >> is still: http://tapestrytools.googlecode.com/svn/TapestryTools/
>> >>
>> >> 2.Finish basic feature of Issue
>> >> 33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
>> >>  It means the list of components (include components parameters) used
>> >> for autocompletion will read the component classes from package
>> >> org.apache.tapestry5.corelib.components which included in
>> >> tapestry-core-*.jar. If you do not have tapestry jars in your build
>> >> path, TapestryTools' auto-complete feature will not work.
>> >>
>> >> 2012/7/1 Gavin Lei <ga...@gmail.com>:
>> >> > Hi all,
>> >> >
>> >> > I have finished Tapestry component/page wizard feature for
>> >> > TapestryTools, and fix issue 30. You guys can install and try the new
>> >> > feature in version 1.0.0.201207011447 now.
>> >> >
>> >> > Install guide:
>> >>
>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>> >> >
>> >> > ---------------------------------
>> >> > Best Regards
>> >> > Gavin Lei (雷银)
>> >> > Email: gavingui2011@gmail.com
>> >>
>> >>
>> >>
>> >> --
>> >> ---------------------------------
>> >> Best Regards
>> >> Gavin Lei (雷银)
>> >> Email: gavingui2011@gmail.com
>> >>
>> >> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> >> For additional commands, e-mail: users-help@tapestry.apache.org
>> >>
>> >>
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Nicolas Barrera <nb...@gmail.com>.
Hi Gavin,

thanks for the quick

As I told you I 'm using maven and I was careful that *through maven*
tapestry-core*.jar was included as a dependency.

Anyway as you told me to double check that, I 've manually added in build
path configuration the tapestry-core*.jar and the behaviour is still the
same... no auto-complete.

I thought that perhaps maven was bringing in some trouble so I decided to
start a new java web project, added tapetsry-core*.jar to the java build
path library configuration, created a page using tapestrytools' wizard,
added a
@Property
String hello;
variable to the .java class... but that property isn't auto-completed
within the tml editor when hitting ${ctrl+space, nor are tapestry core
components when hitting <t:ctrl+space

In TML Editor if I click on "design" view it says:
The document is empty. Right mouse click here to insert content.

But, right clicking does nothing... and above that when switching to source
I see that the document is NOT empty but has this content:

> <html  xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd">
> <body>
>
> </body>
> </html>
>

Hope I 'm helping with some clues...

regards,

Nicolás.-


On Wed, Jul 18, 2012 at 10:47 AM, Gavin Lei <ga...@gmail.com> wrote:

> Hi Nicolas,
>
> Thank you for your feedback, TapestryTools' auto-complete feature need
> tapestry-core-*.jar which contains
> "org.apache.tapestry5.corelib.components" in your eclipse project
> build path.
>
> I think this is not a Juno version issue, please check your build
> path. Right click project -> properties -> Java build path ->
> Libraries.
>
> 2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> > Hi Gavin,
> >
> > I wanted to ask this prior to open a new issue...
> >
> > I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno Version:
> > Juno Release / Build id: 20120614-1722
> >
> > and although tapestrytools seems to be working fine, auto-complete
> features
> > aren't popping out when writing <t:, nor responding when hitting
> > ctrl+space, alt+/
> >
> > I 'm using this maven archetype to generate the project where I 'm
> > exercising this test (groupId=org.apache.tapestry; artifactId=quickstart;
> > version=5.1.0.5) which depends on tapestry-core-5.1.0.5.jar I can see
> that
> > dependency right inside the "Maven Dependencies" Library of the project.
> >
> >
> > As I 've never tested tapestrytools in any other eclipse version so
> perhaps
> > I 'm doing something wrong and wanted to check with you before
> submitting a
> > new issue, do you think this may be an issue concerning Juno only?
> >
> > cheers and thanks!
> >
> > Nicolás.-
> >
> >
> > On Tue, Jul 17, 2012 at 9:49 AM, Gavin Lei <ga...@gmail.com>
> wrote:
> >
> >> TapestryTools update at 2012-07-17:
> >>
> >> 1. Support Eclipse Juno now, the update site(both for Indigo and Juno)
> >> is still: http://tapestrytools.googlecode.com/svn/TapestryTools/
> >>
> >> 2.Finish basic feature of Issue
> >> 33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
> >>  It means the list of components (include components parameters) used
> >> for autocompletion will read the component classes from package
> >> org.apache.tapestry5.corelib.components which included in
> >> tapestry-core-*.jar. If you do not have tapestry jars in your build
> >> path, TapestryTools' auto-complete feature will not work.
> >>
> >> 2012/7/1 Gavin Lei <ga...@gmail.com>:
> >> > Hi all,
> >> >
> >> > I have finished Tapestry component/page wizard feature for
> >> > TapestryTools, and fix issue 30. You guys can install and try the new
> >> > feature in version 1.0.0.201207011447 now.
> >> >
> >> > Install guide:
> >>
> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
> >> >
> >> > ---------------------------------
> >> > Best Regards
> >> > Gavin Lei (雷银)
> >> > Email: gavingui2011@gmail.com
> >>
> >>
> >>
> >> --
> >> ---------------------------------
> >> Best Regards
> >> Gavin Lei (雷银)
> >> Email: gavingui2011@gmail.com
> >>
> >> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> >> For additional commands, e-mail: users-help@tapestry.apache.org
> >>
> >>
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi Nicolas,

Thank you for your feedback, TapestryTools' auto-complete feature need
tapestry-core-*.jar which contains
"org.apache.tapestry5.corelib.components" in your eclipse project
build path.

I think this is not a Juno version issue, please check your build
path. Right click project -> properties -> Java build path ->
Libraries.

2012/7/18 Nicolas Barrera <nb...@gmail.com>:
> Hi Gavin,
>
> I wanted to ask this prior to open a new issue...
>
> I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno Version:
> Juno Release / Build id: 20120614-1722
>
> and although tapestrytools seems to be working fine, auto-complete features
> aren't popping out when writing <t:, nor responding when hitting
> ctrl+space, alt+/
>
> I 'm using this maven archetype to generate the project where I 'm
> exercising this test (groupId=org.apache.tapestry; artifactId=quickstart;
> version=5.1.0.5) which depends on tapestry-core-5.1.0.5.jar I can see that
> dependency right inside the "Maven Dependencies" Library of the project.
>
>
> As I 've never tested tapestrytools in any other eclipse version so perhaps
> I 'm doing something wrong and wanted to check with you before submitting a
> new issue, do you think this may be an issue concerning Juno only?
>
> cheers and thanks!
>
> Nicolás.-
>
>
> On Tue, Jul 17, 2012 at 9:49 AM, Gavin Lei <ga...@gmail.com> wrote:
>
>> TapestryTools update at 2012-07-17:
>>
>> 1. Support Eclipse Juno now, the update site(both for Indigo and Juno)
>> is still: http://tapestrytools.googlecode.com/svn/TapestryTools/
>>
>> 2.Finish basic feature of Issue
>> 33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
>>  It means the list of components (include components parameters) used
>> for autocompletion will read the component classes from package
>> org.apache.tapestry5.corelib.components which included in
>> tapestry-core-*.jar. If you do not have tapestry jars in your build
>> path, TapestryTools' auto-complete feature will not work.
>>
>> 2012/7/1 Gavin Lei <ga...@gmail.com>:
>> > Hi all,
>> >
>> > I have finished Tapestry component/page wizard feature for
>> > TapestryTools, and fix issue 30. You guys can install and try the new
>> > feature in version 1.0.0.201207011447 now.
>> >
>> > Install guide:
>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>> >
>> > ---------------------------------
>> > Best Regards
>> > Gavin Lei (雷银)
>> > Email: gavingui2011@gmail.com
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Nicolas Barrera <nb...@gmail.com>.
Hi Gavin,

I wanted to ask this prior to open a new issue...

I 'm testing TapestryTools 1.0.0.201207172033 with Eclipse Juno Version:
Juno Release / Build id: 20120614-1722

and although tapestrytools seems to be working fine, auto-complete features
aren't popping out when writing <t:, nor responding when hitting
ctrl+space, alt+/

I 'm using this maven archetype to generate the project where I 'm
exercising this test (groupId=org.apache.tapestry; artifactId=quickstart;
version=5.1.0.5) which depends on tapestry-core-5.1.0.5.jar I can see that
dependency right inside the "Maven Dependencies" Library of the project.


As I 've never tested tapestrytools in any other eclipse version so perhaps
I 'm doing something wrong and wanted to check with you before submitting a
new issue, do you think this may be an issue concerning Juno only?

cheers and thanks!

Nicolás.-


On Tue, Jul 17, 2012 at 9:49 AM, Gavin Lei <ga...@gmail.com> wrote:

> TapestryTools update at 2012-07-17:
>
> 1. Support Eclipse Juno now, the update site(both for Indigo and Juno)
> is still: http://tapestrytools.googlecode.com/svn/TapestryTools/
>
> 2.Finish basic feature of Issue
> 33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
>  It means the list of components (include components parameters) used
> for autocompletion will read the component classes from package
> org.apache.tapestry5.corelib.components which included in
> tapestry-core-*.jar. If you do not have tapestry jars in your build
> path, TapestryTools' auto-complete feature will not work.
>
> 2012/7/1 Gavin Lei <ga...@gmail.com>:
> > Hi all,
> >
> > I have finished Tapestry component/page wizard feature for
> > TapestryTools, and fix issue 30. You guys can install and try the new
> > feature in version 1.0.0.201207011447 now.
> >
> > Install guide:
> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
> >
> > ---------------------------------
> > Best Regards
> > Gavin Lei (雷银)
> > Email: gavingui2011@gmail.com
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
TapestryTools update at 2012-07-17:

1. Support Eclipse Juno now, the update site(both for Indigo and Juno)
is still: http://tapestrytools.googlecode.com/svn/TapestryTools/

2.Finish basic feature of Issue
33(http://code.google.com/p/tapestrytools/issues/detail?id=33).
 It means the list of components (include components parameters) used
for autocompletion will read the component classes from package
org.apache.tapestry5.corelib.components which included in
tapestry-core-*.jar. If you do not have tapestry jars in your build
path, TapestryTools' auto-complete feature will not work.

2012/7/1 Gavin Lei <ga...@gmail.com>:
> Hi all,
>
> I have finished Tapestry component/page wizard feature for
> TapestryTools, and fix issue 30. You guys can install and try the new
> feature in version 1.0.0.201207011447 now.
>
> Install guide: http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi all,

I have finished Tapestry component/page wizard feature for
TapestryTools, and fix issue 30. You guys can install and try the new
feature in version 1.0.0.201207011447 now.

Install guide: http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools

---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Yeah, i got a mail notice, thanks

2012/6/12 Dragan Sahpaski <dr...@gmail.com>:
> Hi,
> Here's the issue: http://code.google.com/p/tapestrytools/issues/detail?id=31
>
> Cheers,
> Dragan Sahpaski
>
>
> On Tue, Jun 12, 2012 at 9:52 AM, Gavin Lei <ga...@gmail.com> wrote:
>> Hi Dragan,
>>
>> If you like, you can add a issue here
>> http://code.google.com/p/tapestrytools/issues/list, i will update the
>> issue status once get some real progress about this issue.
>>
>> 2012/6/12 Dragan Sahpaski <dr...@gmail.com>:
>>> Thanks Gavin. Do you want me to open an issue on google code?
>>> IDK if you use the issue tracker.
>>>
>>> Cheers,
>>> Dragan Sahpaski
>>>
>>>
>>> On Tue, Jun 12, 2012 at 5:32 AM, Gavin Lei <ga...@gmail.com> wrote:
>>>> Hi Dragon,
>>>>
>>>> Thank you for your feedback. I have not tired EclipseColor themes yet,
>>>> i will have a test of it when i have time and will post my conclusion
>>>> here when i get one.
>>>>
>>>> 2012/6/11 Dragan Sahpaski <dr...@gmail.com>:
>>>>> Gavin,
>>>>> We are using TapestryTools with the EclipseColor themes available in
>>>>> the marketplace.
>>>>> We are using generally dark themes (Obsidian and Monokai). With the
>>>>> dark themes the Tapestry (XML) editor doesn't respect the theme
>>>>> settings and looks very dark (almost unusable).
>>>>>
>>>>> Now - the XML and HTML editors in eclipse respect the theme settings
>>>>> and we wonder if this is something you noticed. We don't want to
>>>>> switch back to the white theme - so we'll be very grateful if you can
>>>>> fix this. IDK if this is some trivial fix or no.
>>>>>
>>>>> Cheers,
>>>>> Dragan Sahpaski
>>>>>
>>>>>
>>>>> On Mon, Jun 11, 2012 at 10:59 AM, Gavin Lei <ga...@gmail.com> wrote:
>>>>>> Hi all,
>>>>>>
>>>>>> I have finished all the auto-complete features mentioned in
>>>>>> TapestryTools GSoC 2012 proposal [1], we support content assist about:
>>>>>> a. All Tapestry 5 components
>>>>>> b. All Tapestry 5 components' attributes
>>>>>> c. Attribute value EL support
>>>>>> d. Tapestry 5 message support in EL expression of tml page file
>>>>>> e. Tapestry component annotation support
>>>>>>
>>>>>> I am focus on page/component wizard features currently. If you guys
>>>>>> have any advises about finished features, please tell me here. Many
>>>>>> thanks :-)
>>>>>>
>>>>>> [1] http://code.google.com/p/tapestrytools/wiki/Light_weight_TapestryTools
>>>>>>
>>>>>> 2012/6/2 Gavin Lei <ga...@gmail.com>:
>>>>>>> Hi all,
>>>>>>>
>>>>>>> I have strengthened TapestryTools'  components support in content
>>>>>>> assist of TML editor.
>>>>>>>
>>>>>>> In this case:
>>>>>>> <a t:type=""></a>
>>>>>>> All Tapestry components will be suggested after t:type="
>>>>>>>
>>>>>>> And we support @Component annotation now, for example, there is such a
>>>>>>> component in Java page class:
>>>>>>>
>>>>>>>    @Component(
>>>>>>>            parameters = {"value=context.propertyValue",
>>>>>>>                                   "label=prop:context.label",
>>>>>>>                                   "clientId=prop:context.propertyid",
>>>>>>>                                   "validate=prop:calendarFieldValidator"})
>>>>>>>    private DateField calendarField;
>>>>>>>
>>>>>>> This component may be used in the template like this.
>>>>>>>
>>>>>>> <input t:id="calendarField"/>
>>>>>>>
>>>>>>> It means calendarField will be suggested after user input <input t:id=".
>>>>>>>
>>>>>>>
>>>>>>> Fix 2 issues:
>>>>>>> [1] http://code.google.com/p/tapestrytools/issues/detail?id=28&can=1
>>>>>>> [2] http://code.google.com/p/tapestrytools/issues/detail?id=30&can=1
>>>>>>>
>>>>>>>
>>>>>>> Update center is synchronized already, find details here :
>>>>>>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>>>>>>>
>>>>>>> Hope you guys enjoy it.
>>>>>>>
>>>>>>> Yours Gavin Lei
>>>>>>
>>>>>>
>>>>>>
>>>>>> --
>>>>>> ---------------------------------
>>>>>> Best Regards
>>>>>> Gavin Lei (雷银)
>>>>>> Email: gavingui2011@gmail.com
>>>>>>
>>>>>> ---------------------------------------------------------------------
>>>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>>>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>>>>
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> ---------------------------------
>>>> Best Regards
>>>> Gavin Lei (雷银)
>>>> Email: gavingui2011@gmail.com
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Dragan Sahpaski <dr...@gmail.com>.
Hi,
Here's the issue: http://code.google.com/p/tapestrytools/issues/detail?id=31

Cheers,
Dragan Sahpaski


On Tue, Jun 12, 2012 at 9:52 AM, Gavin Lei <ga...@gmail.com> wrote:
> Hi Dragan,
>
> If you like, you can add a issue here
> http://code.google.com/p/tapestrytools/issues/list, i will update the
> issue status once get some real progress about this issue.
>
> 2012/6/12 Dragan Sahpaski <dr...@gmail.com>:
>> Thanks Gavin. Do you want me to open an issue on google code?
>> IDK if you use the issue tracker.
>>
>> Cheers,
>> Dragan Sahpaski
>>
>>
>> On Tue, Jun 12, 2012 at 5:32 AM, Gavin Lei <ga...@gmail.com> wrote:
>>> Hi Dragon,
>>>
>>> Thank you for your feedback. I have not tired EclipseColor themes yet,
>>> i will have a test of it when i have time and will post my conclusion
>>> here when i get one.
>>>
>>> 2012/6/11 Dragan Sahpaski <dr...@gmail.com>:
>>>> Gavin,
>>>> We are using TapestryTools with the EclipseColor themes available in
>>>> the marketplace.
>>>> We are using generally dark themes (Obsidian and Monokai). With the
>>>> dark themes the Tapestry (XML) editor doesn't respect the theme
>>>> settings and looks very dark (almost unusable).
>>>>
>>>> Now - the XML and HTML editors in eclipse respect the theme settings
>>>> and we wonder if this is something you noticed. We don't want to
>>>> switch back to the white theme - so we'll be very grateful if you can
>>>> fix this. IDK if this is some trivial fix or no.
>>>>
>>>> Cheers,
>>>> Dragan Sahpaski
>>>>
>>>>
>>>> On Mon, Jun 11, 2012 at 10:59 AM, Gavin Lei <ga...@gmail.com> wrote:
>>>>> Hi all,
>>>>>
>>>>> I have finished all the auto-complete features mentioned in
>>>>> TapestryTools GSoC 2012 proposal [1], we support content assist about:
>>>>> a. All Tapestry 5 components
>>>>> b. All Tapestry 5 components' attributes
>>>>> c. Attribute value EL support
>>>>> d. Tapestry 5 message support in EL expression of tml page file
>>>>> e. Tapestry component annotation support
>>>>>
>>>>> I am focus on page/component wizard features currently. If you guys
>>>>> have any advises about finished features, please tell me here. Many
>>>>> thanks :-)
>>>>>
>>>>> [1] http://code.google.com/p/tapestrytools/wiki/Light_weight_TapestryTools
>>>>>
>>>>> 2012/6/2 Gavin Lei <ga...@gmail.com>:
>>>>>> Hi all,
>>>>>>
>>>>>> I have strengthened TapestryTools'  components support in content
>>>>>> assist of TML editor.
>>>>>>
>>>>>> In this case:
>>>>>> <a t:type=""></a>
>>>>>> All Tapestry components will be suggested after t:type="
>>>>>>
>>>>>> And we support @Component annotation now, for example, there is such a
>>>>>> component in Java page class:
>>>>>>
>>>>>>    @Component(
>>>>>>            parameters = {"value=context.propertyValue",
>>>>>>                                   "label=prop:context.label",
>>>>>>                                   "clientId=prop:context.propertyid",
>>>>>>                                   "validate=prop:calendarFieldValidator"})
>>>>>>    private DateField calendarField;
>>>>>>
>>>>>> This component may be used in the template like this.
>>>>>>
>>>>>> <input t:id="calendarField"/>
>>>>>>
>>>>>> It means calendarField will be suggested after user input <input t:id=".
>>>>>>
>>>>>>
>>>>>> Fix 2 issues:
>>>>>> [1] http://code.google.com/p/tapestrytools/issues/detail?id=28&can=1
>>>>>> [2] http://code.google.com/p/tapestrytools/issues/detail?id=30&can=1
>>>>>>
>>>>>>
>>>>>> Update center is synchronized already, find details here :
>>>>>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>>>>>>
>>>>>> Hope you guys enjoy it.
>>>>>>
>>>>>> Yours Gavin Lei
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> ---------------------------------
>>>>> Best Regards
>>>>> Gavin Lei (雷银)
>>>>> Email: gavingui2011@gmail.com
>>>>>
>>>>> ---------------------------------------------------------------------
>>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>>
>>>
>>>
>>>
>>> --
>>> ---------------------------------
>>> Best Regards
>>> Gavin Lei (雷银)
>>> Email: gavingui2011@gmail.com
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi Dragan,

If you like, you can add a issue here
http://code.google.com/p/tapestrytools/issues/list, i will update the
issue status once get some real progress about this issue.

2012/6/12 Dragan Sahpaski <dr...@gmail.com>:
> Thanks Gavin. Do you want me to open an issue on google code?
> IDK if you use the issue tracker.
>
> Cheers,
> Dragan Sahpaski
>
>
> On Tue, Jun 12, 2012 at 5:32 AM, Gavin Lei <ga...@gmail.com> wrote:
>> Hi Dragon,
>>
>> Thank you for your feedback. I have not tired EclipseColor themes yet,
>> i will have a test of it when i have time and will post my conclusion
>> here when i get one.
>>
>> 2012/6/11 Dragan Sahpaski <dr...@gmail.com>:
>>> Gavin,
>>> We are using TapestryTools with the EclipseColor themes available in
>>> the marketplace.
>>> We are using generally dark themes (Obsidian and Monokai). With the
>>> dark themes the Tapestry (XML) editor doesn't respect the theme
>>> settings and looks very dark (almost unusable).
>>>
>>> Now - the XML and HTML editors in eclipse respect the theme settings
>>> and we wonder if this is something you noticed. We don't want to
>>> switch back to the white theme - so we'll be very grateful if you can
>>> fix this. IDK if this is some trivial fix or no.
>>>
>>> Cheers,
>>> Dragan Sahpaski
>>>
>>>
>>> On Mon, Jun 11, 2012 at 10:59 AM, Gavin Lei <ga...@gmail.com> wrote:
>>>> Hi all,
>>>>
>>>> I have finished all the auto-complete features mentioned in
>>>> TapestryTools GSoC 2012 proposal [1], we support content assist about:
>>>> a. All Tapestry 5 components
>>>> b. All Tapestry 5 components' attributes
>>>> c. Attribute value EL support
>>>> d. Tapestry 5 message support in EL expression of tml page file
>>>> e. Tapestry component annotation support
>>>>
>>>> I am focus on page/component wizard features currently. If you guys
>>>> have any advises about finished features, please tell me here. Many
>>>> thanks :-)
>>>>
>>>> [1] http://code.google.com/p/tapestrytools/wiki/Light_weight_TapestryTools
>>>>
>>>> 2012/6/2 Gavin Lei <ga...@gmail.com>:
>>>>> Hi all,
>>>>>
>>>>> I have strengthened TapestryTools'  components support in content
>>>>> assist of TML editor.
>>>>>
>>>>> In this case:
>>>>> <a t:type=""></a>
>>>>> All Tapestry components will be suggested after t:type="
>>>>>
>>>>> And we support @Component annotation now, for example, there is such a
>>>>> component in Java page class:
>>>>>
>>>>>    @Component(
>>>>>            parameters = {"value=context.propertyValue",
>>>>>                                   "label=prop:context.label",
>>>>>                                   "clientId=prop:context.propertyid",
>>>>>                                   "validate=prop:calendarFieldValidator"})
>>>>>    private DateField calendarField;
>>>>>
>>>>> This component may be used in the template like this.
>>>>>
>>>>> <input t:id="calendarField"/>
>>>>>
>>>>> It means calendarField will be suggested after user input <input t:id=".
>>>>>
>>>>>
>>>>> Fix 2 issues:
>>>>> [1] http://code.google.com/p/tapestrytools/issues/detail?id=28&can=1
>>>>> [2] http://code.google.com/p/tapestrytools/issues/detail?id=30&can=1
>>>>>
>>>>>
>>>>> Update center is synchronized already, find details here :
>>>>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>>>>>
>>>>> Hope you guys enjoy it.
>>>>>
>>>>> Yours Gavin Lei
>>>>
>>>>
>>>>
>>>> --
>>>> ---------------------------------
>>>> Best Regards
>>>> Gavin Lei (雷银)
>>>> Email: gavingui2011@gmail.com
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Dragan Sahpaski <dr...@gmail.com>.
Thanks Gavin. Do you want me to open an issue on google code?
IDK if you use the issue tracker.

Cheers,
Dragan Sahpaski


On Tue, Jun 12, 2012 at 5:32 AM, Gavin Lei <ga...@gmail.com> wrote:
> Hi Dragon,
>
> Thank you for your feedback. I have not tired EclipseColor themes yet,
> i will have a test of it when i have time and will post my conclusion
> here when i get one.
>
> 2012/6/11 Dragan Sahpaski <dr...@gmail.com>:
>> Gavin,
>> We are using TapestryTools with the EclipseColor themes available in
>> the marketplace.
>> We are using generally dark themes (Obsidian and Monokai). With the
>> dark themes the Tapestry (XML) editor doesn't respect the theme
>> settings and looks very dark (almost unusable).
>>
>> Now - the XML and HTML editors in eclipse respect the theme settings
>> and we wonder if this is something you noticed. We don't want to
>> switch back to the white theme - so we'll be very grateful if you can
>> fix this. IDK if this is some trivial fix or no.
>>
>> Cheers,
>> Dragan Sahpaski
>>
>>
>> On Mon, Jun 11, 2012 at 10:59 AM, Gavin Lei <ga...@gmail.com> wrote:
>>> Hi all,
>>>
>>> I have finished all the auto-complete features mentioned in
>>> TapestryTools GSoC 2012 proposal [1], we support content assist about:
>>> a. All Tapestry 5 components
>>> b. All Tapestry 5 components' attributes
>>> c. Attribute value EL support
>>> d. Tapestry 5 message support in EL expression of tml page file
>>> e. Tapestry component annotation support
>>>
>>> I am focus on page/component wizard features currently. If you guys
>>> have any advises about finished features, please tell me here. Many
>>> thanks :-)
>>>
>>> [1] http://code.google.com/p/tapestrytools/wiki/Light_weight_TapestryTools
>>>
>>> 2012/6/2 Gavin Lei <ga...@gmail.com>:
>>>> Hi all,
>>>>
>>>> I have strengthened TapestryTools'  components support in content
>>>> assist of TML editor.
>>>>
>>>> In this case:
>>>> <a t:type=""></a>
>>>> All Tapestry components will be suggested after t:type="
>>>>
>>>> And we support @Component annotation now, for example, there is such a
>>>> component in Java page class:
>>>>
>>>>    @Component(
>>>>            parameters = {"value=context.propertyValue",
>>>>                                   "label=prop:context.label",
>>>>                                   "clientId=prop:context.propertyid",
>>>>                                   "validate=prop:calendarFieldValidator"})
>>>>    private DateField calendarField;
>>>>
>>>> This component may be used in the template like this.
>>>>
>>>> <input t:id="calendarField"/>
>>>>
>>>> It means calendarField will be suggested after user input <input t:id=".
>>>>
>>>>
>>>> Fix 2 issues:
>>>> [1] http://code.google.com/p/tapestrytools/issues/detail?id=28&can=1
>>>> [2] http://code.google.com/p/tapestrytools/issues/detail?id=30&can=1
>>>>
>>>>
>>>> Update center is synchronized already, find details here :
>>>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>>>>
>>>> Hope you guys enjoy it.
>>>>
>>>> Yours Gavin Lei
>>>
>>>
>>>
>>> --
>>> ---------------------------------
>>> Best Regards
>>> Gavin Lei (雷银)
>>> Email: gavingui2011@gmail.com
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi Dragon,

Thank you for your feedback. I have not tired EclipseColor themes yet,
i will have a test of it when i have time and will post my conclusion
here when i get one.

2012/6/11 Dragan Sahpaski <dr...@gmail.com>:
> Gavin,
> We are using TapestryTools with the EclipseColor themes available in
> the marketplace.
> We are using generally dark themes (Obsidian and Monokai). With the
> dark themes the Tapestry (XML) editor doesn't respect the theme
> settings and looks very dark (almost unusable).
>
> Now - the XML and HTML editors in eclipse respect the theme settings
> and we wonder if this is something you noticed. We don't want to
> switch back to the white theme - so we'll be very grateful if you can
> fix this. IDK if this is some trivial fix or no.
>
> Cheers,
> Dragan Sahpaski
>
>
> On Mon, Jun 11, 2012 at 10:59 AM, Gavin Lei <ga...@gmail.com> wrote:
>> Hi all,
>>
>> I have finished all the auto-complete features mentioned in
>> TapestryTools GSoC 2012 proposal [1], we support content assist about:
>> a. All Tapestry 5 components
>> b. All Tapestry 5 components' attributes
>> c. Attribute value EL support
>> d. Tapestry 5 message support in EL expression of tml page file
>> e. Tapestry component annotation support
>>
>> I am focus on page/component wizard features currently. If you guys
>> have any advises about finished features, please tell me here. Many
>> thanks :-)
>>
>> [1] http://code.google.com/p/tapestrytools/wiki/Light_weight_TapestryTools
>>
>> 2012/6/2 Gavin Lei <ga...@gmail.com>:
>>> Hi all,
>>>
>>> I have strengthened TapestryTools'  components support in content
>>> assist of TML editor.
>>>
>>> In this case:
>>> <a t:type=""></a>
>>> All Tapestry components will be suggested after t:type="
>>>
>>> And we support @Component annotation now, for example, there is such a
>>> component in Java page class:
>>>
>>>    @Component(
>>>            parameters = {"value=context.propertyValue",
>>>                                   "label=prop:context.label",
>>>                                   "clientId=prop:context.propertyid",
>>>                                   "validate=prop:calendarFieldValidator"})
>>>    private DateField calendarField;
>>>
>>> This component may be used in the template like this.
>>>
>>> <input t:id="calendarField"/>
>>>
>>> It means calendarField will be suggested after user input <input t:id=".
>>>
>>>
>>> Fix 2 issues:
>>> [1] http://code.google.com/p/tapestrytools/issues/detail?id=28&can=1
>>> [2] http://code.google.com/p/tapestrytools/issues/detail?id=30&can=1
>>>
>>>
>>> Update center is synchronized already, find details here :
>>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>>>
>>> Hope you guys enjoy it.
>>>
>>> Yours Gavin Lei
>>
>>
>>
>> --
>> ---------------------------------
>> Best Regards
>> Gavin Lei (雷银)
>> Email: gavingui2011@gmail.com
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Dragan Sahpaski <dr...@gmail.com>.
Gavin,
We are using TapestryTools with the EclipseColor themes available in
the marketplace.
We are using generally dark themes (Obsidian and Monokai). With the
dark themes the Tapestry (XML) editor doesn't respect the theme
settings and looks very dark (almost unusable).

Now - the XML and HTML editors in eclipse respect the theme settings
and we wonder if this is something you noticed. We don't want to
switch back to the white theme - so we'll be very grateful if you can
fix this. IDK if this is some trivial fix or no.

Cheers,
Dragan Sahpaski


On Mon, Jun 11, 2012 at 10:59 AM, Gavin Lei <ga...@gmail.com> wrote:
> Hi all,
>
> I have finished all the auto-complete features mentioned in
> TapestryTools GSoC 2012 proposal [1], we support content assist about:
> a. All Tapestry 5 components
> b. All Tapestry 5 components' attributes
> c. Attribute value EL support
> d. Tapestry 5 message support in EL expression of tml page file
> e. Tapestry component annotation support
>
> I am focus on page/component wizard features currently. If you guys
> have any advises about finished features, please tell me here. Many
> thanks :-)
>
> [1] http://code.google.com/p/tapestrytools/wiki/Light_weight_TapestryTools
>
> 2012/6/2 Gavin Lei <ga...@gmail.com>:
>> Hi all,
>>
>> I have strengthened TapestryTools'  components support in content
>> assist of TML editor.
>>
>> In this case:
>> <a t:type=""></a>
>> All Tapestry components will be suggested after t:type="
>>
>> And we support @Component annotation now, for example, there is such a
>> component in Java page class:
>>
>>    @Component(
>>            parameters = {"value=context.propertyValue",
>>                                   "label=prop:context.label",
>>                                   "clientId=prop:context.propertyid",
>>                                   "validate=prop:calendarFieldValidator"})
>>    private DateField calendarField;
>>
>> This component may be used in the template like this.
>>
>> <input t:id="calendarField"/>
>>
>> It means calendarField will be suggested after user input <input t:id=".
>>
>>
>> Fix 2 issues:
>> [1] http://code.google.com/p/tapestrytools/issues/detail?id=28&can=1
>> [2] http://code.google.com/p/tapestrytools/issues/detail?id=30&can=1
>>
>>
>> Update center is synchronized already, find details here :
>> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>>
>> Hope you guys enjoy it.
>>
>> Yours Gavin Lei
>
>
>
> --
> ---------------------------------
> Best Regards
> Gavin Lei (雷银)
> Email: gavingui2011@gmail.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Lightweight TapestryTools update site

Posted by Gavin Lei <ga...@gmail.com>.
Hi all,

I have finished all the auto-complete features mentioned in
TapestryTools GSoC 2012 proposal [1], we support content assist about:
a. All Tapestry 5 components
b. All Tapestry 5 components' attributes
c. Attribute value EL support
d. Tapestry 5 message support in EL expression of tml page file
e. Tapestry component annotation support

I am focus on page/component wizard features currently. If you guys
have any advises about finished features, please tell me here. Many
thanks :-)

[1] http://code.google.com/p/tapestrytools/wiki/Light_weight_TapestryTools

2012/6/2 Gavin Lei <ga...@gmail.com>:
> Hi all,
>
> I have strengthened TapestryTools'  components support in content
> assist of TML editor.
>
> In this case:
> <a t:type=""></a>
> All Tapestry components will be suggested after t:type="
>
> And we support @Component annotation now, for example, there is such a
> component in Java page class:
>
>    @Component(
>            parameters = {"value=context.propertyValue",
>                                   "label=prop:context.label",
>                                   "clientId=prop:context.propertyid",
>                                   "validate=prop:calendarFieldValidator"})
>    private DateField calendarField;
>
> This component may be used in the template like this.
>
> <input t:id="calendarField"/>
>
> It means calendarField will be suggested after user input <input t:id=".
>
>
> Fix 2 issues:
> [1] http://code.google.com/p/tapestrytools/issues/detail?id=28&can=1
> [2] http://code.google.com/p/tapestrytools/issues/detail?id=30&can=1
>
>
> Update center is synchronized already, find details here :
> http://code.google.com/p/tapestrytools/wiki/Install_Guide_Lightweight_TapestryTools
>
> Hope you guys enjoy it.
>
> Yours Gavin Lei



-- 
---------------------------------
Best Regards
Gavin Lei (雷银)
Email: gavingui2011@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org