[hibernate-dev] weird jira status

2011-11-25 Thread Strong Liu


what should I do? there is no "resolve" button/link, is this a jira bug?
-
Best Regards,

Strong Liu 
http://about.me/stliu/bio

___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] weird jira status

2011-11-25 Thread Sanne Grinovero
Do you have an example?
I see "resolve" buttons as usual.

Sanne

On 25 November 2011 15:39, Strong Liu  wrote:
>
>
> what should I do? there is no "resolve" button/link, is this a jira bug?
> -
> Best Regards,
>
> Strong Liu 
> http://about.me/stliu/bio
>
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] weird jira status

2011-11-25 Thread Strong Liu
HHH-6700?

(i see that on others too, only HHH-6700 doesn't have that button)
-
Best Regards,

Strong Liu 
http://about.me/stliu/bio

On Nov 25, 2011, at 11:56 PM, Sanne Grinovero wrote:

> Do you have an example?
> I see "resolve" buttons as usual.
> 
> Sanne
> 
> On 25 November 2011 15:39, Strong Liu  wrote:
>> 
>> 
>> what should I do? there is no "resolve" button/link, is this a jira bug?
>> -
>> Best Regards,
>> 
>> Strong Liu 
>> http://about.me/stliu/bio
>> 
>> ___
>> hibernate-dev mailing list
>> hibernate-dev@lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>> 

___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] weird jira status

2011-11-25 Thread Hardy Ferentschik
On Fri, 25 Nov 2011 16:56:48 +0100, Sanne Grinovero   
wrote:

> Do you have an example?
> I see "resolve" buttons as usual.

Me too. Are you logged in ;-) !?
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] weird jira status

2011-11-25 Thread Sanne Grinovero
Right, I can't solve that one either.
I've seen that happening before. If no one else can solve it, you'll
need to ask support about it. It seems it can happen occasionally with
JIRA issues, hopefully it's an isolated case.

Sanne

On 25 November 2011 16:10, Hardy Ferentschik  wrote:
> On Fri, 25 Nov 2011 16:56:48 +0100, Sanne Grinovero 
> wrote:
>
>> Do you have an example?
>> I see "resolve" buttons as usual.
>
> Me too. Are you logged in ;-) !?
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] weird jira status

2011-11-25 Thread Steve Ebersole
First time I have seen this.  Yeah, probably we will need to get 
Atlassian/Contegix to have a look at it.  Do you have other examples?


On Fri 25 Nov 2011 10:55:52 AM CST, Sanne Grinovero wrote:
> Right, I can't solve that one either.
> I've seen that happening before. If no one else can solve it, you'll
> need to ask support about it. It seems it can happen occasionally with
> JIRA issues, hopefully it's an isolated case.
>
> Sanne
>
> On 25 November 2011 16:10, Hardy Ferentschik  wrote:
>> On Fri, 25 Nov 2011 16:56:48 +0100, Sanne Grinovero
>> wrote:
>>
>>> Do you have an example?
>>> I see "resolve" buttons as usual.
>>
>> Me too. Are you logged in ;-) !?
>> ___
>> hibernate-dev mailing list
>> hibernate-dev@lists.jboss.org
>> https://lists.jboss.org/mailman/listinfo/hibernate-dev
>>
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev

-- 
st...@hibernate.org
http://hibernate.org
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] Hbm mapping with hibernate 4

2011-11-25 Thread Steve Ebersole
As mentioned in the migration guide, MetadataSources (in fact all of 
o.h.metamodel) is still a work in progress and not for usage...

http://community.jboss.org/wiki/HibernateCoreMigrationGuide40


On Thu 24 Nov 2011 06:55:06 AM CST, Max Rydahl Andersen wrote:
> For hibernate guys: to be clear, what Dmitry is working on is
> to test and develop support in hibernate tools / jboss tools to work with 
> both Hibernate 3.x and Hibernate 4.
>
> The docs/migration guide doesn't seem to cover these differences so asked him 
> to raise the question on the list.
>
> /max
>
> On Nov 24, 2011, at 24:01, Dmitry Geraskov wrote:
>
>> Hey, guys,
>>
>> I created the simplest hbm mapping and try to build session factory(full 
>> project attached, Hibernate-core4.0.0.CR6):
>>
>> new MetadataSources(
>>   new ServiceRegistryBuilder().configure()
>>   
>> .buildServiceRegistry()).buildMetadata().buildSessionFactory();
>>
>>
>> And I get this exception(full log attached):
>>
>> Caused by: org.xml.sax.SAXParseException; lineNumber: 5; columnNumber: 26; 
>> cvc-elt.1: Cannot find the declaration of element 'hibernate-configuration'.
>> at 
>> com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:198)
>> ...
>>
>>
>> When I build session factory using old syntax
>>
>> new Configuration().configure().buildSessionFactory();
>>
>> it works only with DTD schema(not 100% sure I found a correct header to use 
>> xsd for hibernate.cfg.xml):
>>
>> > xmlns="http://www.hibernate.org/xsd/hibernate-configuration";
>> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
>> xsi:schemaLocation="http://www.hibernate.org/xsd/hibernate-configuration 
>> https://raw.github.com/hibernate/hibernate-core/master/hibernate-core/src/main/resources/org/hibernate/hibernate-configuration-4.0.xsd";>
>>
>> .
>>
>> This seems like a bug, or I do something wrong?
>>
>> Dmitry Geraskov
>>
>>
>> 
>
> /max
> http://about.me/maxandersen
>
>
>
>
> ___
> hibernate-dev mailing list
> hibernate-dev@lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/hibernate-dev

-- 
st...@hibernate.org
http://hibernate.org
___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev


Re: [hibernate-dev] weird jira status

2011-11-25 Thread Sanne Grinovero
On 25 November 2011 17:42, Steve Ebersole  wrote:
> First time I have seen this.  Yeah, probably we will need to get
> Atlassian/Contegix to have a look at it.  Do you have other examples?

Not currently, it happened to me once on jboss.org, I had to open a
ticket to have it fixed by someone of the jboss.org team; they didn't
seem surprised.

Sanne

___
hibernate-dev mailing list
hibernate-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/hibernate-dev