[jira] Created: (OFBIZ-988) Incorrect default FOP font-base URL

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
9 messages Options
Reply | Threaded
Open this post in threaded view
|

[jira] Created: (OFBIZ-988) Incorrect default FOP font-base URL

Nicolas Malin (Jira)
Incorrect default FOP font-base URL
-----------------------------------

                 Key: OFBIZ-988
                 URL: https://issues.apache.org/jira/browse/OFBIZ-988
             Project: OFBiz (The Open for Business Project)
          Issue Type: Bug
          Components: framework
    Affects Versions: SVN trunk, Release Branch 4.0
            Reporter: Oleg Andreyev
            Priority: Minor
             Fix For: SVN trunk
         Attachments: webapp.diff

Attached patch fix this problem

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Updated: (OFBIZ-988) Incorrect default FOP font-base URL

Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Oleg Andreyev updated OFBIZ-988:
--------------------------------

    Attachment: webapp.diff

> Incorrect default FOP font-base URL
> -----------------------------------
>
>                 Key: OFBIZ-988
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-988
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: SVN trunk, Release Branch 4.0
>            Reporter: Oleg Andreyev
>            Priority: Minor
>             Fix For: SVN trunk
>
>         Attachments: webapp.diff
>
>
> Attached patch fix this problem

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Assigned: (OFBIZ-988) Incorrect default FOP font-base URL

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hans Bakker reassigned OFBIZ-988:
---------------------------------

    Assignee: Hans Bakker

> Incorrect default FOP font-base URL
> -----------------------------------
>
>                 Key: OFBIZ-988
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-988
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: SVN trunk, Release Branch 4.0
>            Reporter: Oleg Andreyev
>         Assigned To: Hans Bakker
>            Priority: Minor
>             Fix For: SVN trunk
>
>         Attachments: webapp.diff
>
>
> Attached patch fix this problem

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Closed: (OFBIZ-988) Incorrect default FOP font-base URL

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hans Bakker closed OFBIZ-988.
-----------------------------

       Resolution: Fixed
    Fix Version/s: Release Branch 4.0

implemented in trunk and release 4.0, thanks Oleg.

> Incorrect default FOP font-base URL
> -----------------------------------
>
>                 Key: OFBIZ-988
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-988
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: SVN trunk, Release Branch 4.0
>            Reporter: Oleg Andreyev
>         Assigned To: Hans Bakker
>            Priority: Minor
>             Fix For: SVN trunk, Release Branch 4.0
>
>         Attachments: webapp.diff
>
>
> Attached patch fix this problem

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Reopened: (OFBIZ-988) Incorrect default FOP font-base URL

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Joe Eckard reopened OFBIZ-988:
------------------------------


What issue was this patch intended to fix? On my system, this creates a bug by adding an extra "/" to the URI, making it invalid. e.g:

FOP-FontBaseURL: file:////Users/eckard/src/ofbiz-rr/framework/webapp/config/ (wrong)

instead of

FOP-FontBaseURL: file:///Users/eckard/src/ofbiz-rr/framework/webapp/config/ (correct)

also, a few other questions:
 
1. Why are we constructing the default URI this way? If we're on a windows machine, ofbiz.home may have backslashes
2. Why are we making the default font location framework/webapp/config? Why not create a new fonts directory?
3. Why is the fop config filename hardcoded?
4. Where is the fop.properties file? There doesn't appear to be one in the project with default values & comments.

> Incorrect default FOP font-base URL
> -----------------------------------
>
>                 Key: OFBIZ-988
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-988
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: SVN trunk, Release Branch 4.0
>            Reporter: Oleg Andreyev
>            Assignee: Hans Bakker
>            Priority: Minor
>             Fix For: SVN trunk, Release Branch 4.0
>
>         Attachments: webapp.diff
>
>
> Attached patch fix this problem

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Issue Comment Edited: (OFBIZ-988) Incorrect default FOP font-base URL

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-988?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12637573#action_12637573 ]

eckardjf edited comment on OFBIZ-988 at 10/7/08 11:12 AM:
------------------------------------------------------------

What issue was this patch intended to fix? On my system, this creates a bug by adding an extra "/" to the URI, making it invalid. e.g:

FOP-FontBaseURL: file:////Users/eckard/src/ofbiz-rr/framework/webapp/config/ (wrong)

instead of

FOP-FontBaseURL: file:///Users/eckard/src/ofbiz-rr/framework/webapp/config/ (correct)

also, a few other questions:
 
1. Why are we constructing the default URI this way? If we're on a windows machine, ofbiz.home may have backslashes
2. Why are we making the default font location framework/webapp/config? Why not create a new fonts directory?
3. Why is the fop config filename hardcoded?
4. Where is the fop.properties file? There doesn't appear to be one in the project with default values & comments.

(will submit patch when time permits, just wanted to re-open so it doesn't get missed)

      was (Author: eckardjf):
    What issue was this patch intended to fix? On my system, this creates a bug by adding an extra "/" to the URI, making it invalid. e.g:

FOP-FontBaseURL: file:////Users/eckard/src/ofbiz-rr/framework/webapp/config/ (wrong)

instead of

FOP-FontBaseURL: file:///Users/eckard/src/ofbiz-rr/framework/webapp/config/ (correct)

also, a few other questions:
 
1. Why are we constructing the default URI this way? If we're on a windows machine, ofbiz.home may have backslashes
2. Why are we making the default font location framework/webapp/config? Why not create a new fonts directory?
3. Why is the fop config filename hardcoded?
4. Where is the fop.properties file? There doesn't appear to be one in the project with default values & comments.
 

> Incorrect default FOP font-base URL
> -----------------------------------
>
>                 Key: OFBIZ-988
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-988
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: SVN trunk, Release Branch 4.0
>            Reporter: Oleg Andreyev
>            Assignee: Hans Bakker
>            Priority: Minor
>             Fix For: SVN trunk, Release Branch 4.0
>
>         Attachments: webapp.diff
>
>
> Attached patch fix this problem

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Assigned: (OFBIZ-988) Incorrect default FOP font-base URL

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hans Bakker reassigned OFBIZ-988:
---------------------------------

    Assignee:     (was: Hans Bakker)

> Incorrect default FOP font-base URL
> -----------------------------------
>
>                 Key: OFBIZ-988
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-988
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: SVN trunk, Release Branch 4.0
>            Reporter: Oleg Andreyev
>            Priority: Minor
>             Fix For: SVN trunk, Release Branch 4.0
>
>         Attachments: webapp.diff
>
>
> Attached patch fix this problem

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Closed: (OFBIZ-988) Incorrect default FOP font-base URL

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Erwan de FERRIERES closed OFBIZ-988.
------------------------------------

    Resolution: Fixed

> Incorrect default FOP font-base URL
> -----------------------------------
>
>                 Key: OFBIZ-988
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-988
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: Release Branch 4.0, SVN trunk
>            Reporter: Oleg Andreyev
>            Priority: Minor
>             Fix For: Release Branch 4.0, SVN trunk
>
>         Attachments: webapp.diff
>
>
> Attached patch fix this problem

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Commented: (OFBIZ-988) Incorrect default FOP font-base URL

Nicolas Malin (Jira)
In reply to this post by Nicolas Malin (Jira)

    [ https://issues.apache.org/jira/browse/OFBIZ-988?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12928980#action_12928980 ]

Erwan de FERRIERES commented on OFBIZ-988:
------------------------------------------

Should have been closed in 2007 ! ;)

> Incorrect default FOP font-base URL
> -----------------------------------
>
>                 Key: OFBIZ-988
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-988
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: Release Branch 4.0, SVN trunk
>            Reporter: Oleg Andreyev
>            Priority: Minor
>             Fix For: Release Branch 4.0, SVN trunk
>
>         Attachments: webapp.diff
>
>
> Attached patch fix this problem

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.