Meeting minutes 12/12/12
by Lincoln Baxter, III
Meeting ended Wed Dec 12 15:57:02 2012 UTC. Information about MeetBot at
http://wiki.debian.org/MeetBot . (v 0.1.4)
Minutes:
http://transcripts.jboss.org/meeting/irc.freenode.org/forge/2012/forge.20...
Minutes (text):
http://transcripts.jboss.org/meeting/irc.freenode.org/forge/2012/forge.20...
Log:
http://transcripts.jboss.org/meeting/irc.freenode.org/forge/2012/forge.20...
==============
#forge Meeting
==============
Meeting started by lincolnthree at 15:06:11 UTC. The full logs are
available athttp://transcripts.jboss.org/meeting/irc.freenode.org/forge/2012/forge....
.
Meeting summary
---------------
* Agenda (lincolnthree, 15:06:15)
* Upcoming 1.1.3 Release (lincolnthree, 15:06:31)
* Forge 2.0 Status (lincolnthree, 15:06:36)
* What's next on 2.0 (lincolnthree, 15:06:59)
* Upcoming 1.1.3 Release (lincolnthree, 15:09:10)
* 2.0 Status Update (lincolnthree, 15:21:51)
* What's next on 2.0 (lincolnthree, 15:35:35)
* We need the UI API asap (lincolnthree, 15:35:46)
Meeting ended at 15:57:02 UTC.
Action Items
------------
Action Items, by person
-----------------------
* **UNASSIGNED**
* (none)
People Present (lines said)
---------------------------
* lincolnthree (131)
* gastaldi (59)
* koentsje (40)
* ivannov (8)
* mbenson (3)
* jbott (2)
* kenfinnigan (1)
Generated by `MeetBot`_ 0.1.4
.. _`MeetBot`: http://wiki.debian.org/MeetBot
--
Lincoln Baxter, III
http://ocpsoft.org
"Simpler is better."
12 years, 1 month
Testing WebLogic code
by Luca Masini
As suggested I wrote on Arquillian community and this is the response:
"The Arquillian WebLogic Container only depend on JavaEE libs compile time,
so we avoid the license issue there. But when it comes to running/testing,
you'll need a license.
So currently, the WebLogic container is only built(compiled/packaged) on
our CI. Community members that hold a license run the test suite manually.
I don't remember how the WebLogic developer license is, but the WebSphere
Developer license states things like: can not be used for testing, only
valid to the local developer computer, can not be placed as part of a build
server, etc etc.
Seemingly, you're not allowed to release code that requires container
libraries compile time based on those licenses. Even if compiled from the
local computer that has the license."
Is exactly our case. I would like to remember that, on contrary of
WebSphere, when I asked about license problem Oracle answered me that for
them is enough that we don't use WebLogic for a production site.
What to do now ?
--
****************************************
http://www.lucamasini.net
http://twitter.com/lmasini
http://www.linkedin.com/pub/luca-masini/7/10/2b9
****************************************
12 years, 1 month
Re: [forge-dev] Again classloading.....
by Luca Masini
Thank you Ryan, I tried with your suggestion and it works for resources,
but it comes to ClassLoading it doesn't work.
There the "BaseConfigReader" and that's the class that is unable to find
plugins' classes.
Do you think I'm doing something wrong ?
2012/12/7 Ryan Bradley <ryan.k.bradley(a)gmail.com>
> Hi Luca,
>
> As Lincoln mentioned, I took the second approach. I think that it's the
> simplest way to do it. The line is highlighted at:
>
>
> https://github.com/forge/plugin-spring-mvc/blob/master/src/main/java/org/...
>
> Cheers,
> Ryan
>
>
>
> On Thu, Dec 6, 2012 at 3:08 PM, Luca Masini <luca.masini(a)gmail.com> wrote:
>
>> Ryan there are two solutions:
>>
>> 1) Override the lookupClass method to look in the current class
>> ClassLoader
>> 2) Use Seam's ClassLoaderTemplateResolver to load resources.
>>
>> I really don't know which is the best approach.
>>
>>
>> 2012/12/5 Ryan Bradley <ryan.k.bradley(a)gmail.com>
>>
>>> Hi Luca,
>>>
>>> As Richard mentioned, I worked to create a Metawidget implementation for
>>> my Forge plugin. Unfortunately, I have been unable to be as actively
>>> involved with Forge lately as I have been busy at school. However, I am
>>> happy to answer any questions/describe how my implementation works. I will
>>> try to be as prompt as possible in my responses, but I make no guarantees
>>> as exams are starting now.
>>>
>>> Cheers,
>>> Ryan
>>>
>>>
>>> On Tue, Dec 4, 2012 at 9:12 AM, Luca Masini <luca.masini(a)gmail.com>wrote:
>>>
>>>> After the resources I have the same problem with the classes that are
>>>> needed from MetaWidget.
>>>>
>>>> The fact is that from the configuration it must load a class inside my
>>>> module/plugin, but to lookup the class it uses the
>>>> org.jboss.forge.forge-scaffold... module, which of course know nothing
>>>> about my custom classes.
>>>>
>>>> Now the solution is to override the lookupClasses, but am I doing
>>>> something wrong ?? There is a way to let "system" modules see my custom
>>>> classes ??
>>>>
>>>> Thank you
>>>>
>>>> --
>>>> ****************************************
>>>> http://www.lucamasini.net
>>>> http://twitter.com/lmasini
>>>> http://www.linkedin.com/pub/luca-masini/7/10/2b9
>>>> ****************************************
>>>>
>>>> _______________________________________________
>>>> forge-dev mailing list
>>>> forge-dev(a)lists.jboss.org
>>>> https://lists.jboss.org/mailman/listinfo/forge-dev
>>>>
>>>>
>>>
>>
>>
>> --
>> ****************************************
>> http://www.lucamasini.net
>> http://twitter.com/lmasini
>> http://www.linkedin.com/pub/luca-masini/7/10/2b9
>> ****************************************
>>
>
>
--
****************************************
http://www.lucamasini.net
http://twitter.com/lmasini
http://www.linkedin.com/pub/luca-masini/7/10/2b9
****************************************
12 years, 1 month
Scaffolding and class loading
by Luca Masini
Hi guys, I'm facing a strange problem. Inside a facet which is a scaffold
provider I need to load a resource for MetaWidget. I can see printing this
from the method that needs the resource
this.getClass().getClassLoader().getResource("scaffold/errai/metawidget-formbean.xml")
that the file is available:
file:/Users/lucamasini/.forge/plugins/org/jboss/forge/forge-scaffold-errai/1.0.6-SNAPSHOT-e0a249f3-6fe7-4ea1-8fd9-680f8e422af4/forge-scaffold-errai.jar!/scaffold/errai/metawidget-formbean.xml
but inside the SimpleResourceResolver neither:
ClassLoader loaderContext = Thread.currentThread().getContextClassLoader();
or:
InputStream stream = getClass().getResourceAsStream( resource );
can find the resource because the "forge-scaffold-errai.jar" is not one of
the JAR used by the current classloader (which is a JBoss's
ModuleClassloader).
The current implementation of scaffolding for faces works because is inside
the forge itself, but I think we have some problems using it in an external
plugin.
Do you think I need to declare it in some kind of manifest ??
Thank you
L.
--
****************************************
http://www.lucamasini.net
http://twitter.com/lmasini
http://www.linkedin.com/pub/luca-masini/7/10/2b9
****************************************
12 years, 1 month
Again classloading.....
by Luca Masini
After the resources I have the same problem with the classes that are
needed from MetaWidget.
The fact is that from the configuration it must load a class inside my
module/plugin, but to lookup the class it uses the
org.jboss.forge.forge-scaffold... module, which of course know nothing
about my custom classes.
Now the solution is to override the lookupClasses, but am I doing something
wrong ?? There is a way to let "system" modules see my custom classes ??
Thank you
--
****************************************
http://www.lucamasini.net
http://twitter.com/lmasini
http://www.linkedin.com/pub/luca-masini/7/10/2b9
****************************************
12 years, 1 month
Aesh & Eclipse
by Lincoln Baxter, III
Hey Stale,
I tried to get Aesh to accept user input from the test case, but it does
not seem like it is working in Eclipse. You mentioned you were going to be
working on that.
What needs to be done, and when do you think you might be able to work on
it? I'd like to start playing with the shell, and I think we're ready to
start porting some more things over from Forge 1.
Thanks a lot!
--
Lincoln Baxter, III
http://ocpsoft.org
"Simpler is better."
12 years, 1 month
Hang on Exit
by James Perkins
I'm seeing a hang on exit. I did a stack trace and a kill -3 on it,
https://gist.github.com/4179325. It looks like the console input thread
is hanging for some reason. Note this only happens when I type exit and
enter. Using CTRL+D works, but CTRL+C does not either. It doesn't hang,
but it doesn't exit with CTRL+C.
--
James R. Perkins
JBoss by Red Hat
12 years, 2 months