You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@aries.apache.org by "Charles Moulliard (JIRA)" <ji...@apache.org> on 2011/03/03 18:35:36 UTC

[jira] Created: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
-------------------------------------------------------------------------------------------

                 Key: ARIES-597
                 URL: https://issues.apache.org/jira/browse/ARIES-597
             Project: Aries
          Issue Type: Improvement
          Components: JPA
    Affects Versions: 0.3
            Reporter: Charles Moulliard
             Fix For: 0.4
         Attachments: jpaproject.mdtext

Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

For Contributors Submitting Patches That Delete Files

Posted by John W Ross <jw...@us.ibm.com>.
If you're contributing patches that other folks are committing, and at
least one of your patches deletes a file, you may run into an issue where
the deleted file remains in your local svn history (but not on the file
system) even after syncing with the repo and merging the committed changes.
The way you can tell if this applies to you is by running "svn status" from
the command line. For example,

$ svn status subsystem/
D
subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/ScopeAdminImpl.java

The 'D' says it all. While this condition persists, the deleted files will
appear in all subsequent patches creating a headache for the committer. At
least one way to resolve this issue is "svn update" followed by "svn
resolve". For example,

$ svn update
subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/ScopeAdminImpl.java
   C
subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/ScopeAdminImpl.java
At revision 1083035.
Summary of conflicts:
  Tree conflicts: 1

$ svn status subsystem/
!     C
subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/ScopeAdminImpl.java
      >   local delete, incoming delete upon update

$ svn resolve --accept=working
subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/ScopeAdminImpl.java
Resolved conflicted state of
'subsystem/subsystem-scope-impl/src/main/java/org/apache/aries/subsystem/scope/impl/ScopeAdminImpl.java'

The deleted file should no longer show up under "svn status" or in your
patches.

~John

Re: [jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by Charles Moulliard <cm...@gmail.com>.
As an Apache Committer, I can modify the CMS content but cannot commit
my change. I will add my patches through JIRA tickets before to become
an Apache Aries committer.

On Tue, Mar 15, 2011 at 6:06 PM, Alasdair Nottingham <no...@apache.org> wrote:
> Ah, the one downside of Apache CMS. The website is in svn at:
> https://svn.apache.org/repos/asf/aries/site/trunk/ so you can check it
> out and provide patches.
>
> Alasdair
>
> On 15 March 2011 16:36, Charles Moulliard <cm...@gmail.com> wrote:
>> Hi Alasdair,
>>
>> As I'm not an Apache Aries committer, it will be difficult for me to
>> commit svn code.
>>
>> Regards,
>>
>> Charles Moulliard
>>
>> Sr. Principal Solution Architect - FuseSource
>> Apache Committer
>>
>> Blog : http://cmoulliard.blogspot.com
>> Twitter : http://twitter.com/cmoulliard
>> Linkedin : http://www.linkedin.com/in/charlesmoulliard
>> Skype: cmoulliard
>>
>>
>>
>> On Tue, Mar 15, 2011 at 5:27 PM, Alasdair Nottingham <no...@apache.org> wrote:
>>> Hi,
>>>
>>> I'm Alasdair, Tim is on holiday this week.
>>>
>>> The website is part of Apache CMS. The information on how to
>>> update/develop it is located here:
>>> http://aries.apache.org/development/maintainingthewebpages.html
>>>
>>> Alasdair
>>>
>>> On 15 March 2011 13:55, Charles Moulliard <cm...@gmail.com> wrote:
>>>> Thx Timothy. Is there a way for me to work on the web content using
>>>> wiki/confluence ? This will avoid creating tickets, .... because I
>>>> plan to work on documentation about Aries Transaction and Aries
>>>> Blueprint
>>>>
>>>> On Tue, Mar 15, 2011 at 2:47 PM, Alasdair Nottingham (JIRA)
>>>> <ji...@apache.org> wrote:
>>>>>
>>>>>    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13006918#comment-13006918 ]
>>>>>
>>>>> Alasdair Nottingham commented on ARIES-597:
>>>>> -------------------------------------------
>>>>>
>>>>> I have fixed this. I've also removed the ${pom.artificatId}
>>>>>
>>>>>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>>>>>> -------------------------------------------------------------------------------------------
>>>>>>
>>>>>>                 Key: ARIES-597
>>>>>>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>>>>>>             Project: Aries
>>>>>>          Issue Type: Improvement
>>>>>>          Components: JPA
>>>>>>    Affects Versions: 0.3
>>>>>>            Reporter: Charles Moulliard
>>>>>>            Assignee: Timothy Ward
>>>>>>             Fix For: 0.4
>>>>>>
>>>>>>         Attachments: jpaproject.mdtext
>>>>>>
>>>>>>
>>>>>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>>>>>
>>>>> --
>>>>> This message is automatically generated by JIRA.
>>>>> For more information on JIRA, see: http://www.atlassian.com/software/jira
>>>>>
>>>>
>>>
>>>
>>>
>>> --
>>> Alasdair Nottingham
>>> not@apache.org
>>>
>>
>
>
>
> --
> Alasdair Nottingham
> not@apache.org
>

Re: [jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by Alasdair Nottingham <no...@apache.org>.
Ah, the one downside of Apache CMS. The website is in svn at:
https://svn.apache.org/repos/asf/aries/site/trunk/ so you can check it
out and provide patches.

Alasdair

On 15 March 2011 16:36, Charles Moulliard <cm...@gmail.com> wrote:
> Hi Alasdair,
>
> As I'm not an Apache Aries committer, it will be difficult for me to
> commit svn code.
>
> Regards,
>
> Charles Moulliard
>
> Sr. Principal Solution Architect - FuseSource
> Apache Committer
>
> Blog : http://cmoulliard.blogspot.com
> Twitter : http://twitter.com/cmoulliard
> Linkedin : http://www.linkedin.com/in/charlesmoulliard
> Skype: cmoulliard
>
>
>
> On Tue, Mar 15, 2011 at 5:27 PM, Alasdair Nottingham <no...@apache.org> wrote:
>> Hi,
>>
>> I'm Alasdair, Tim is on holiday this week.
>>
>> The website is part of Apache CMS. The information on how to
>> update/develop it is located here:
>> http://aries.apache.org/development/maintainingthewebpages.html
>>
>> Alasdair
>>
>> On 15 March 2011 13:55, Charles Moulliard <cm...@gmail.com> wrote:
>>> Thx Timothy. Is there a way for me to work on the web content using
>>> wiki/confluence ? This will avoid creating tickets, .... because I
>>> plan to work on documentation about Aries Transaction and Aries
>>> Blueprint
>>>
>>> On Tue, Mar 15, 2011 at 2:47 PM, Alasdair Nottingham (JIRA)
>>> <ji...@apache.org> wrote:
>>>>
>>>>    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13006918#comment-13006918 ]
>>>>
>>>> Alasdair Nottingham commented on ARIES-597:
>>>> -------------------------------------------
>>>>
>>>> I have fixed this. I've also removed the ${pom.artificatId}
>>>>
>>>>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>>>>> -------------------------------------------------------------------------------------------
>>>>>
>>>>>                 Key: ARIES-597
>>>>>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>>>>>             Project: Aries
>>>>>          Issue Type: Improvement
>>>>>          Components: JPA
>>>>>    Affects Versions: 0.3
>>>>>            Reporter: Charles Moulliard
>>>>>            Assignee: Timothy Ward
>>>>>             Fix For: 0.4
>>>>>
>>>>>         Attachments: jpaproject.mdtext
>>>>>
>>>>>
>>>>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>>>>
>>>> --
>>>> This message is automatically generated by JIRA.
>>>> For more information on JIRA, see: http://www.atlassian.com/software/jira
>>>>
>>>
>>
>>
>>
>> --
>> Alasdair Nottingham
>> not@apache.org
>>
>



-- 
Alasdair Nottingham
not@apache.org

Re: [jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by Charles Moulliard <cm...@gmail.com>.
Hi Alasdair,

As I'm not an Apache Aries committer, it will be difficult for me to
commit svn code.

Regards,

Charles Moulliard

Sr. Principal Solution Architect - FuseSource
Apache Committer

Blog : http://cmoulliard.blogspot.com
Twitter : http://twitter.com/cmoulliard
Linkedin : http://www.linkedin.com/in/charlesmoulliard
Skype: cmoulliard



On Tue, Mar 15, 2011 at 5:27 PM, Alasdair Nottingham <no...@apache.org> wrote:
> Hi,
>
> I'm Alasdair, Tim is on holiday this week.
>
> The website is part of Apache CMS. The information on how to
> update/develop it is located here:
> http://aries.apache.org/development/maintainingthewebpages.html
>
> Alasdair
>
> On 15 March 2011 13:55, Charles Moulliard <cm...@gmail.com> wrote:
>> Thx Timothy. Is there a way for me to work on the web content using
>> wiki/confluence ? This will avoid creating tickets, .... because I
>> plan to work on documentation about Aries Transaction and Aries
>> Blueprint
>>
>> On Tue, Mar 15, 2011 at 2:47 PM, Alasdair Nottingham (JIRA)
>> <ji...@apache.org> wrote:
>>>
>>>    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13006918#comment-13006918 ]
>>>
>>> Alasdair Nottingham commented on ARIES-597:
>>> -------------------------------------------
>>>
>>> I have fixed this. I've also removed the ${pom.artificatId}
>>>
>>>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>>>> -------------------------------------------------------------------------------------------
>>>>
>>>>                 Key: ARIES-597
>>>>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>>>>             Project: Aries
>>>>          Issue Type: Improvement
>>>>          Components: JPA
>>>>    Affects Versions: 0.3
>>>>            Reporter: Charles Moulliard
>>>>            Assignee: Timothy Ward
>>>>             Fix For: 0.4
>>>>
>>>>         Attachments: jpaproject.mdtext
>>>>
>>>>
>>>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>>>
>>> --
>>> This message is automatically generated by JIRA.
>>> For more information on JIRA, see: http://www.atlassian.com/software/jira
>>>
>>
>
>
>
> --
> Alasdair Nottingham
> not@apache.org
>

Re: [jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by Alasdair Nottingham <no...@apache.org>.
Hi,

I'm Alasdair, Tim is on holiday this week.

The website is part of Apache CMS. The information on how to
update/develop it is located here:
http://aries.apache.org/development/maintainingthewebpages.html

Alasdair

On 15 March 2011 13:55, Charles Moulliard <cm...@gmail.com> wrote:
> Thx Timothy. Is there a way for me to work on the web content using
> wiki/confluence ? This will avoid creating tickets, .... because I
> plan to work on documentation about Aries Transaction and Aries
> Blueprint
>
> On Tue, Mar 15, 2011 at 2:47 PM, Alasdair Nottingham (JIRA)
> <ji...@apache.org> wrote:
>>
>>    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13006918#comment-13006918 ]
>>
>> Alasdair Nottingham commented on ARIES-597:
>> -------------------------------------------
>>
>> I have fixed this. I've also removed the ${pom.artificatId}
>>
>>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>>> -------------------------------------------------------------------------------------------
>>>
>>>                 Key: ARIES-597
>>>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>>>             Project: Aries
>>>          Issue Type: Improvement
>>>          Components: JPA
>>>    Affects Versions: 0.3
>>>            Reporter: Charles Moulliard
>>>            Assignee: Timothy Ward
>>>             Fix For: 0.4
>>>
>>>         Attachments: jpaproject.mdtext
>>>
>>>
>>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>>
>> --
>> This message is automatically generated by JIRA.
>> For more information on JIRA, see: http://www.atlassian.com/software/jira
>>
>



-- 
Alasdair Nottingham
not@apache.org

Re: [jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by Charles Moulliard <cm...@gmail.com>.
Thx Timothy. Is there a way for me to work on the web content using
wiki/confluence ? This will avoid creating tickets, .... because I
plan to work on documentation about Aries Transaction and Aries
Blueprint

On Tue, Mar 15, 2011 at 2:47 PM, Alasdair Nottingham (JIRA)
<ji...@apache.org> wrote:
>
>    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13006918#comment-13006918 ]
>
> Alasdair Nottingham commented on ARIES-597:
> -------------------------------------------
>
> I have fixed this. I've also removed the ${pom.artificatId}
>
>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>> -------------------------------------------------------------------------------------------
>>
>>                 Key: ARIES-597
>>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>>             Project: Aries
>>          Issue Type: Improvement
>>          Components: JPA
>>    Affects Versions: 0.3
>>            Reporter: Charles Moulliard
>>            Assignee: Timothy Ward
>>             Fix For: 0.4
>>
>>         Attachments: jpaproject.mdtext
>>
>>
>> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
>
> --
> This message is automatically generated by JIRA.
> For more information on JIRA, see: http://www.atlassian.com/software/jira
>

[jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Charles Moulliard (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13002093#comment-13002093 ] 

Charles Moulliard commented on ARIES-597:
-----------------------------------------

Hi,

Here is my first step to contribute to Aries Documentation and project too. Can someone review what I have made and publish it on the web site ? For the future, that would be fine if I have access to the wiki to make directly adaptations into the project

Regards

Charles Moulliard
Apache Committer

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>             Fix For: 0.4
>
>         Attachments: jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Alasdair Nottingham (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13007421#comment-13007421 ] 

Alasdair Nottingham commented on ARIES-597:
-------------------------------------------

I can't seem to apply the patch. I've tried several ways, but I keep being told something is not right. It looks fine to me, any chance you could take a look and see if something is wrong?

Thanks

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Timothy Ward
>             Fix For: 0.4
>
>         Attachments: jpamdtext.patch, jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Charles Moulliard (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13007425#comment-13007425 ] 

Charles Moulliard commented on ARIES-597:
-----------------------------------------

Can you commit my modification from CMS tool --> https://cms.apache.org/aries/wc/browse/cmoulliard-Rb5BqT/trunk/content/modules/jpaproject.mdtext ?

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Alasdair Nottingham
>             Fix For: 0.4
>
>         Attachments: jpamdtext.patch, jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Assigned: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Timothy Ward (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Timothy Ward reassigned ARIES-597:
----------------------------------

    Assignee: Timothy Ward

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Timothy Ward
>             Fix For: 0.4
>
>         Attachments: jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Reopened: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Alasdair Nottingham (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alasdair Nottingham reopened ARIES-597:
---------------------------------------

      Assignee: Alasdair Nottingham  (was: Timothy Ward)

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Alasdair Nottingham
>             Fix For: 0.4
>
>         Attachments: jpamdtext.patch, jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Charles Moulliard (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13006840#comment-13006840 ] 

Charles Moulliard commented on ARIES-597:
-----------------------------------------

Hi,

There is an issue with {code} on the page rendered on the web site. This tag {code} is not coverted by the wiki/confluence web site. Can you check and update it please ?

Regard,

Charles

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Timothy Ward
>             Fix For: 0.4
>
>         Attachments: jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Updated: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Charles Moulliard (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Charles Moulliard updated ARIES-597:
------------------------------------

    Attachment: jpamdtext.patch

Modify layout and add link to an example in deploy section

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Timothy Ward
>             Fix For: 0.4
>
>         Attachments: jpamdtext.patch, jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Alasdair Nottingham (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13006918#comment-13006918 ] 

Alasdair Nottingham commented on ARIES-597:
-------------------------------------------

I have fixed this. I've also removed the ${pom.artificatId}

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Timothy Ward
>             Fix For: 0.4
>
>         Attachments: jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Alasdair Nottingham (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13008381#comment-13008381 ] 

Alasdair Nottingham commented on ARIES-597:
-------------------------------------------

I couldn't access that URL, so I've tried to manually merge the changes in. The merges are here:

http://aries.staging.apache.org/modules/jpaproject.html

I guess the diff capability in Apache CMS is broken, or not intended for creating patches. If it looks fine I will publish.

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Alasdair Nottingham
>             Fix For: 0.4
>
>         Attachments: jpamdtext.patch, jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Commented: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Charles Moulliard (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13007422#comment-13007422 ] 

Charles Moulliard commented on ARIES-597:
-----------------------------------------

I put in a file the diff generated by CMS tool. So I have no idea what could be wrong except. Otherwise, I can put in attachment the jpa.mtext file including modifications ? Alternative is that you accept me as a committer and provide the grants ;-)

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Alasdair Nottingham
>             Fix For: 0.4
>
>         Attachments: jpamdtext.patch, jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Resolved] (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Alasdair Nottingham (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alasdair Nottingham resolved ARIES-597.
---------------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 0.4)

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Alasdair Nottingham
>         Attachments: jpamdtext.patch, jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Resolved: (ARIES-597) Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

Posted by "Timothy Ward (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/ARIES-597?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Timothy Ward resolved ARIES-597.
--------------------------------

    Resolution: Fixed

Changes are now live on the site

> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project
> -------------------------------------------------------------------------------------------
>
>                 Key: ARIES-597
>                 URL: https://issues.apache.org/jira/browse/ARIES-597
>             Project: Aries
>          Issue Type: Improvement
>          Components: JPA
>    Affects Versions: 0.3
>            Reporter: Charles Moulliard
>            Assignee: Timothy Ward
>             Fix For: 0.4
>
>         Attachments: jpaproject.mdtext
>
>
> Improve the JPA web page of Aries to explain step by step how to create a Aries JPA project

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira