Re: breadcrums dropdown scheme

2010-01-06 Thread Hans Bakker
Hi Ryan,

thanks for your reply, saves me a lot of time.

Regards,
Hans 

On Wed, 2010-01-06 at 09:46 -0700, Ryan Foster wrote:
> I think what your customer might be looking for (and consequently, what you 
> are looking for) is not transparent, but semi-transparent.  If you make the 
> background completely transparent, you won't be able to see the menu and it 
> will be completely useless.  However, you could make the background color 
> semi-transparent/opaque, allowing you to see the menu and also see what is 
> underneath it (like a lightbox type effect).  Here is a cross-browser CSS 
> transparency solution:
> 
> .transparent_class {
>  background-color:#333;
>  filter:alpha(opacity=50);  
>  -moz-opacity:0.5;  
>  -khtml-opacity: 0.5;  
>  opacity: 0.5;
>  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";  
> }
> 
> This will result in a 50% gray opaque background.  Hope this help Hans.
> 
> Ryan Foster
> HotWax Media
> 801.671.0769
> ryan.fos...@hotwaxmedia.com
> 
> 
> 
> 
> On Jan 6, 2010, at 6:17 AM, Hans Bakker wrote:
> 
> > Thank you very much for your help, that is what i was just looking
> > for...
> > 
> > Regards,
> > Hans
> > 
> > On Wed, 2010-01-06 at 18:44 +0530, Rishi Solanki wrote:
> >> Hi Hans,
> >> breadcrumbs dropdown's style.css line 1080 of  #main-navigation ul li ul,
> >> #app-navigation ul li ul
> >> make its background to transparent will solves the transparent background
> >> problem. But for sure it should not be recommended.
> >> 
> >> 
> >> Rishi Solanki
> >> Enterprise Software Developer
> >> HotWax Media Pvt. Ltd.
> >> 
> >> 
> >> On Wed, Jan 6, 2010 at 11:32 AM, Rishi Solanki 
> >> wrote:
> >> 
> >>> Sorry, I see you are asking for breadcrubs dropdown, for that I'm not able
> >>> to figure out how it can be achieve.
> >>> 
> >>> 
> >>> Rishi Solanki
> >>> Enterprise Software Developer
> >>> HotWax Media Pvt. Ltd.
> >>> 
> >>> 
> >>> On Wed, Jan 6, 2010 at 10:59 AM, Rishi Solanki 
> >>> wrote:
> >>> 
>  To make the dropdown menu transparent go to style.css of bizznesstime
>  theme and on line 556 change the css of #header-nav to ;
>  background:transparent none repeat scroll 0 0;
>  If we look at the particular applications menu in bizzness time theme it
>  will be shown as transparent. May need to do some more fixes in css to
>  better show it on UI.
>  So it is possible but should not recommended as the underlying screen 
>  text
>  overlapped on the menu links, in turn it will be a pain for user to 
>  select
>  on the correct menu item.
>  
>  Rishi Solanki
>  Enterprise Software Developer
>  HotWax Media Pvt. Ltd.
>  
>  
>  
>  On Wed, Jan 6, 2010 at 7:53 AM, Hans Bakker <
>  mailingl...@antwebsystems.com> wrote:
>  
> > A question from one of my customers:
> > 
> > the dropdown menu, is it possible to make this transparent so you can
> > see the underlying screen?
> > 
> > Thanks in advance for your answer,
> > 
> > regards,
> > Hans
> > 
> > 
> > --
> > Antwebsystems.com: Quality OFBiz services for competitive rates
> > 
> > 
>  
> >>> 
> > -- 
> > Antwebsystems.com: Quality OFBiz services for competitive rates
> > 
> 
-- 
Antwebsystems.com: Quality OFBiz services for competitive rates



Re: buildbot failure in ASF Buildbot on ofbiz-trunk

2010-01-06 Thread Adam Heath
Scott Gray wrote:
> On 6/01/2010, at 10:50 AM, Adam Heath wrote:
> 
>> Scott Gray wrote:
>>> On 6/01/2010, at 10:19 AM, Adam Heath wrote:
>>>
 Additionally, it'd be nice if once a failure is detected, it'd either
 do an auto binary disection, to find the commit that actually failed
 in the list of covered revisions, or it could just try them all.

 For instance, if 891234 is good, and then 892765 fails.  892765 would
 get recorded as a state change, putting ofbiz into fail mode.  It
 would then try 891562, 891840, 892496, and 892599, reporting that it
 tried these other revisions, and noticed the error first occurred at
 892496, then ofbiz would stay in fail mode, and the buildbot would
 keep quiet until it detects that ofbiz has been fixed.
>>>
>>> I have no idea if buildbot is capable of this but you're more than
>>> welcome to investigate it and request changes from infra.
>>
>> Standard open-source response, kinda expected it.  It'd still be nice
>> if the request was forwarded on, if it wasn't too much of a hassle.
>> If it is, I respect that, and I'll just add it to my infinite todo
>> list squared.
> 
> The idea is to ask infra to do no more than is necessary (they're unpaid
> volunteers), so at the very least we (you) should find out if buildbot
> is capable of doing what you desire.
> As below human time isn't free and I'd prefer it if people deal with
> infra directly if the change is important enough to them.
> 
>>> In general though I think it's usually fairly obvious what the cause of
>>> a problem is based on a quick look at the stdio from the failed build
>>> task.  I don't think it's a huge ask for each committer on the blamelist
>>> to take a minute or two to figure out if it's their problem or not.
>>
>> Computer time is free, human time is not.  Computers are continually
>> getting faster, while humans get slower.
> 
> I don't disagree that knowing exactly what revision caused the failure
> would be useful, it's just that I don't think it's useful enough for me
> to spend any time worrying about :-)
> 
>> Have you had a chance to play with git bisect yet?  It makes me feel
>> squishy in my happy place.
> 
> Not yet, I don't usually bother tracking down an offending commit unless
> I'm particularly interested in what the hell they were thinking or if I
> need to discuss the whys and hows.
> 
> I'm mostly still using git as I was using svn except for heavy use of
> stash, branch and reset.

I had to learn it quick.  We were attempting to manage a website, on
multiple internal machines, a staging server, a customer-hosted
production server, and a customer-hosted development server.  The size
of the website was originally 22G, but grew during development to
40G(it had lots and lots of videos).

Originally it was all managed in svn, but multi-server development
sucks.  We then moved to mercurial.  However, mercurial is buggy with
large systems, because it has a built-in limit due to its use of
python-strings internally.  In essence, a changeset can't be larger
than 2G.  If you don't update the site for a couple of days, it could
be entirely possible that the whole set of changes would be more than
2G, and it would just stop working.  Not to mention when files get
renamed, that mercurial would end up storing multiple copies of the
same blob of bytes(svn is better in that regard).

We finally settled on git.  During this time, we really only used it
like svn, but committing locally, then made use of it as an advanced
rsync deployment system.  The switch to git for this large website
happened last March.

Since then, I've become ecstatic with git.  It's not been a completely
new workflow; I've used svk ages ago(but not really that much, just
kinda like an offline commit), and mercurial 1.5 years ago.

> 



Re: omg, more git magics

2010-01-06 Thread Tim Ruppert
Adam - just wanted to say thanks for sharing all of these GIT goodies.  I'm 
looking forward to getting there ASAP as it really does sound like it fixes a 
lot of the problems that are all too common when doing distributed development 
like this.

Cheers,
Ruppert
--
Tim Ruppert
HotWax Media
http://www.hotwaxmedia.com

o:801.649.6594
f:801.649.6595

On Jan 6, 2010, at 10:50 AM, Adam Heath wrote:

> God, I just love git.  Just ran into another *wonderful* feature.
> 
> Here at brainfood, we use debian.  As such, we make use of the debian
> packaging to deploy ofbiz to our servers.  To provide for that, I have
> a branch of ofbiz that I made against head back in september, then I
> cherry-pick patches from trunk as we see fit.
> 
> Yesterday, I was going thru all the changes in december,
> cherry-picking several patches.  After I was all done, I then ran a
> compile.  Wouldn't you know it, one of the changes didn't work.  This
> was because it added a UtilValidate call, but not an import of
> UtilValidate(most likely because some earlier commit that I didn't
> cherry-pick already had added the import).  So, now I needed to fix
> this problem.  The issue, is that the commit was *not* the last one,
> but 9 commits old.  So, ...
> 
> 
> git rebase -i HEAD~10, launches vim with:
> ==
> pick 3373962 Remove duplicate webslinger-base-invoker libs ...
> pick 7aee368 I noticed during test runs that the same eca ...
> pick d3a6532 Merge birt branch 831204:886087 and 831209:885099. ...
> pick ac2d9b6 Ignore birt/build
> pick 897ffb2 Fix groovy class parsing/caching.
> pick f64071b Although we do not experience compile problems ...
> pick b7dc3d7 Applied patch from OFBIZ-3358, form ...
> pick 181a272 too many files copied over from the addbirt ...
> pick 35d9560 Utility methods for reading strings from streams ...
> ==
> 
> I then changed the second line to say 'edit' instead of 'pick', then
> saved the file.
> 
> Git replayed all those changes to the 7aee368 commit, then told me to
> edit any files I needed to.  I then ran git add to add them to the git
> index.  git commit --amend altered the commit, allowing me to add the
> missing import line.
> 
> Finally, git rebase --continue altered all the *other* commits that
> sat on top of the broken one, optionally updating any patches that may
> have merge conflicts(it's *very* smart at this).
> 
> So now I have a working tree, without this compile error, and the
> proper fix is actually in the right commit, instead of being yet
> another commit at the head.
> 
> This just makes me oh so happy.



smime.p7s
Description: S/MIME cryptographic signature


omg, more git magics

2010-01-06 Thread Adam Heath
God, I just love git.  Just ran into another *wonderful* feature.

Here at brainfood, we use debian.  As such, we make use of the debian
packaging to deploy ofbiz to our servers.  To provide for that, I have
a branch of ofbiz that I made against head back in september, then I
cherry-pick patches from trunk as we see fit.

Yesterday, I was going thru all the changes in december,
cherry-picking several patches.  After I was all done, I then ran a
compile.  Wouldn't you know it, one of the changes didn't work.  This
was because it added a UtilValidate call, but not an import of
UtilValidate(most likely because some earlier commit that I didn't
cherry-pick already had added the import).  So, now I needed to fix
this problem.  The issue, is that the commit was *not* the last one,
but 9 commits old.  So, ...


git rebase -i HEAD~10, launches vim with:
==
pick 3373962 Remove duplicate webslinger-base-invoker libs ...
pick 7aee368 I noticed during test runs that the same eca ...
pick d3a6532 Merge birt branch 831204:886087 and 831209:885099. ...
pick ac2d9b6 Ignore birt/build
pick 897ffb2 Fix groovy class parsing/caching.
pick f64071b Although we do not experience compile problems ...
pick b7dc3d7 Applied patch from OFBIZ-3358, form ...
pick 181a272 too many files copied over from the addbirt ...
pick 35d9560 Utility methods for reading strings from streams ...
==

I then changed the second line to say 'edit' instead of 'pick', then
saved the file.

Git replayed all those changes to the 7aee368 commit, then told me to
edit any files I needed to.  I then ran git add to add them to the git
index.  git commit --amend altered the commit, allowing me to add the
missing import line.

Finally, git rebase --continue altered all the *other* commits that
sat on top of the broken one, optionally updating any patches that may
have merge conflicts(it's *very* smart at this).

So now I have a working tree, without this compile error, and the
proper fix is actually in the right commit, instead of being yet
another commit at the head.

This just makes me oh so happy.


Re: breadcrums dropdown scheme

2010-01-06 Thread Ryan Foster
I think what your customer might be looking for (and consequently, what you are 
looking for) is not transparent, but semi-transparent.  If you make the 
background completely transparent, you won't be able to see the menu and it 
will be completely useless.  However, you could make the background color 
semi-transparent/opaque, allowing you to see the menu and also see what is 
underneath it (like a lightbox type effect).  Here is a cross-browser CSS 
transparency solution:

.transparent_class {
 background-color:#333;
 filter:alpha(opacity=50);  
 -moz-opacity:0.5;  
 -khtml-opacity: 0.5;  
 opacity: 0.5;
 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";  
}

This will result in a 50% gray opaque background.  Hope this help Hans.

Ryan Foster
HotWax Media
801.671.0769
ryan.fos...@hotwaxmedia.com




On Jan 6, 2010, at 6:17 AM, Hans Bakker wrote:

> Thank you very much for your help, that is what i was just looking
> for...
> 
> Regards,
> Hans
> 
> On Wed, 2010-01-06 at 18:44 +0530, Rishi Solanki wrote:
>> Hi Hans,
>> breadcrumbs dropdown's style.css line 1080 of  #main-navigation ul li ul,
>> #app-navigation ul li ul
>> make its background to transparent will solves the transparent background
>> problem. But for sure it should not be recommended.
>> 
>> 
>> Rishi Solanki
>> Enterprise Software Developer
>> HotWax Media Pvt. Ltd.
>> 
>> 
>> On Wed, Jan 6, 2010 at 11:32 AM, Rishi Solanki 
>> wrote:
>> 
>>> Sorry, I see you are asking for breadcrubs dropdown, for that I'm not able
>>> to figure out how it can be achieve.
>>> 
>>> 
>>> Rishi Solanki
>>> Enterprise Software Developer
>>> HotWax Media Pvt. Ltd.
>>> 
>>> 
>>> On Wed, Jan 6, 2010 at 10:59 AM, Rishi Solanki 
>>> wrote:
>>> 
 To make the dropdown menu transparent go to style.css of bizznesstime
 theme and on line 556 change the css of #header-nav to ;
 background:transparent none repeat scroll 0 0;
 If we look at the particular applications menu in bizzness time theme it
 will be shown as transparent. May need to do some more fixes in css to
 better show it on UI.
 So it is possible but should not recommended as the underlying screen text
 overlapped on the menu links, in turn it will be a pain for user to select
 on the correct menu item.
 
 Rishi Solanki
 Enterprise Software Developer
 HotWax Media Pvt. Ltd.
 
 
 
 On Wed, Jan 6, 2010 at 7:53 AM, Hans Bakker <
 mailingl...@antwebsystems.com> wrote:
 
> A question from one of my customers:
> 
> the dropdown menu, is it possible to make this transparent so you can
> see the underlying screen?
> 
> Thanks in advance for your answer,
> 
> regards,
> Hans
> 
> 
> --
> Antwebsystems.com: Quality OFBiz services for competitive rates
> 
> 
 
>>> 
> -- 
> Antwebsystems.com: Quality OFBiz services for competitive rates
> 



[jira] Closed: (OFBIZ-3393) Temporal Expression Maintenance Is Missing In Webtools Application

2010-01-06 Thread Adrian Crum (JIRA)

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

Adrian Crum closed OFBIZ-3393.
--

Resolution: Invalid

Thanks Bruno!


> Temporal Expression Maintenance Is Missing In Webtools Application
> --
>
> Key: OFBIZ-3393
> URL: https://issues.apache.org/jira/browse/OFBIZ-3393
> Project: OFBiz
>  Issue Type: Bug
>Affects Versions: SVN trunk
>Reporter: Adrian Crum
>
> The Temporal Expression maintenance screen has disappeared in the trunk 
> Webtools application: https://demo.ofbiz.org/webtools/control/main. It exists 
> in the R 9.04 version.

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



Re: ofbiz.org domain and all the infra around it

2010-01-06 Thread BJ Freeman
thanks for the heads up.

Tim Ruppert sent the following on 1/4/2010 8:11 AM:
> Just wanted to let everyone know that we reupped for another month since it 
> appears that everything hasn't been migrated off of the server by the end of 
> last week. We have signed the decommission notice for this server to end 
> before the end of this month.  Looking forward to not losing any data and 
> getting people rallied around getting everything over to the ASF.
> 
> Cheers,
> Ruppert
> --
> Tim Ruppert
> HotWax Media
> http://www.hotwaxmedia.com
> 
> o:801.649.6594
> f:801.649.6595
> 
> On Dec 22, 2009, at 9:41 PM, Tim Ruppert wrote:
> 
>> Alright, just wanted to raise this up again to anyone working with the infra 
>> team at the ASF - I'm still not sure that we have a working duplicate of 
>> what Contegix and HotWax have been hosting for years.  Here's the checklist 
>> if anyone's interested:
>>
>> 1. docs.ofbiz.org - migrated, but still dependent at some level of the old 
>> backup at olddocs.ofbiz.org
>> 2. demo.ofbiz.org - not migrated
>> 3. demo40.ofbiz.org - not migrated
>> 4. demo904.ofbiz.org - not migrated
>> 5. api.ofbiz.org - migrated?
>> 6. build.ofbiz.org (I think this is close)
>> 7. log.ofbiz.org - not migrated until 2, 3, and 4 are migrated
>> 8. olddocs.ofbiz.org - not migrated
>> 9. bigfiles.ofbiz.org - not migrated 
>> 10. anything else?
>>
>> We're now over the XMas holiday here and there are only 9 days left on this 
>> server.  Please speak up on which portions are going to be a huge problem or 
>> please step up and help to migrate this stuff off because I don't want OFBiz 
>> to turn into a pumpkin because we didn't have people acting - we've been 
>> talking about it for six weeks now 
>>
>> Cheers,
>> Ruppert
>> --
>> Tim Ruppert
>> HotWax Media
>> http://www.hotwaxmedia.com
>>
>> o:801.649.6594
>> f:801.649.6595
>>
>> On Dec 15, 2009, at 2:34 PM, Tim Ruppert wrote:
>>
>>> The other thing to remember is that I don't think that the demo.ofbiz.org, 
>>> demo40.ofbiz.org, and demo904.ofbiz.org - but I think the rest of those are 
>>> good to go.
>>>
>>> Cheers,
>>> Ruppert
>>> --
>>> Tim Ruppert
>>> HotWax Media
>>> http://www.hotwaxmedia.com
>>>
>>> o:801.649.6594
>>> f:801.649.6595
>>>
>>> On Dec 15, 2009, at 12:38 PM, David E Jones wrote:
>>>
 On Dec 15, 2009, at 1:34 PM, Jacques Le Roux wrote:

> From: "David E Jones" 
>> What are the remaining resources? From memory:
>>
>> - build.ofbiz.org
>> - api.ofbiz.org
>> - bigfiles.ofbiz.org
>> - olddocs.ofbiz.org
> What were bigfiles.ofbiz.org?
 These are movie files and other big files linked to from docs.ofbiz.org, 
 now cwiki.ofbiz.org (like the Framework Introduction videos).

>> You're right that there hasn't been much about these... does anyone care?
>>
>> About olddocs... IMO it's a bad idea to move it over just because some 
>> old links inside the wiki itself can be served by it. Over
>> time that content will get more and more stale, and more an more 
>> confusing. Let's just update the links as we notice them or as
>> they bother us.
> Yes, but for old tinylinks it's not always obvious to know what they 
> represent. There are some of them in OFBiz trunk as well (not
> much 50+). And it's not very good for newcomers. If we could change them 
> in one shoot it would be great but we have to know where they point to.
> Also I must admit I have no time to put  in this at the moment
 Well, hopefully we've learned our lesson...

 -David



>> On Dec 15, 2009, at 9:26 AM, Tim Ruppert wrote:
>>
>>> Looking for thoughts from the community since we're less than two weeks 
>>> away from removing this server.
>>>
 Also, what about moving the olddocs.ofbiz.org to ASF infra somewhere 
 so that all of the links don't have to be updated?
 Something to think on 

 Cheers,
 Ruppert
 --
 Tim Ruppert
 HotWax Media
 http://www.hotwaxmedia.com

 o:801.649.6594
 f:801.649.6595

 On Dec 10, 2009, at 9:56 AM, Tim Ruppert wrote:

> David you own this officially at this point - but I'd like to know 
> what we should do with this at the end of the month?  The
> reason is that there are a ton of subdomains, that even if we move 
> over to all being under ofbiz.apache.org or some other
> hosted infra at apache, we will need to support the rewrites, etc 
> going forward.
>
> I'd love to have everyone weigh in to see what we want to do.  
> Thoughts?
>>> Cheers,
>>> Ruppert
>>> --
>>> Tim Ruppert
>>> HotWax Media
>>> http://www.hotwaxmedia.com
>>>
>>> o:801.649.6594
>>> f:801.649.6595
>>>
>
> 



Re: factfinder - integration

2010-01-06 Thread Alexander1893

Hi Jacques,

sorry for using the wrong mailling list - thanks for the information.

alexander


Jacques Le Roux wrote:
> 
> Hi Alexander,
> 
> Please use rather user ML for such questions, see why here :
> http://cwiki.apache.org/confluence/display/OFBADMIN/Mailing+Lists#MailingLists-DesignanddevelopmentList:dev@ofbiz.apache.org
> 
> Thanks
> 
> Jacques
> 
> From: "Alexander1893" 
>> 
>> Hi all,
>> 
>> did anyone integrate factfinder into ofbiz? or any other professionell
>> search engine?
>> 
>> Thanx
>> Alexander
>> -- 
>> View this message in context:
>> http://n4.nabble.com/factfinder-integration-tp999233p999233.html
>> Sent from the OFBiz - Dev mailing list archive at Nabble.com.
>>
> 
> 
> 

-- 
View this message in context: 
http://n4.nabble.com/factfinder-integration-tp999233p1000462.html
Sent from the OFBiz - Dev mailing list archive at Nabble.com.


[jira] Commented: (OFBIZ-3393) Temporal Expression Maintenance Is Missing In Webtools Application

2010-01-06 Thread Bruno Busco (JIRA)

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

Bruno Busco commented on OFBIZ-3393:


Adrian,
it has now been moved under Webtools->Configuration->Temporal expression



> Temporal Expression Maintenance Is Missing In Webtools Application
> --
>
> Key: OFBIZ-3393
> URL: https://issues.apache.org/jira/browse/OFBIZ-3393
> Project: OFBiz
>  Issue Type: Bug
>Affects Versions: SVN trunk
>Reporter: Adrian Crum
>
> The Temporal Expression maintenance screen has disappeared in the trunk 
> Webtools application: https://demo.ofbiz.org/webtools/control/main. It exists 
> in the R 9.04 version.

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



[jira] Created: (OFBIZ-3393) Temporal Expression Maintenance Is Missing In Webtools Application

2010-01-06 Thread Adrian Crum (JIRA)
Temporal Expression Maintenance Is Missing In Webtools Application
--

 Key: OFBIZ-3393
 URL: https://issues.apache.org/jira/browse/OFBIZ-3393
 Project: OFBiz
  Issue Type: Bug
Affects Versions: SVN trunk
Reporter: Adrian Crum


The Temporal Expression maintenance screen has disappeared in the trunk 
Webtools application: https://demo.ofbiz.org/webtools/control/main. It exists 
in the R 9.04 version.


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



Re: breadcrums dropdown scheme

2010-01-06 Thread Hans Bakker
Thank you very much for your help, that is what i was just looking
for...

Regards,
Hans

On Wed, 2010-01-06 at 18:44 +0530, Rishi Solanki wrote:
> Hi Hans,
> breadcrumbs dropdown's style.css line 1080 of  #main-navigation ul li ul,
> #app-navigation ul li ul
> make its background to transparent will solves the transparent background
> problem. But for sure it should not be recommended.
> 
> 
> Rishi Solanki
> Enterprise Software Developer
> HotWax Media Pvt. Ltd.
> 
> 
> On Wed, Jan 6, 2010 at 11:32 AM, Rishi Solanki wrote:
> 
> > Sorry, I see you are asking for breadcrubs dropdown, for that I'm not able
> > to figure out how it can be achieve.
> >
> >
> > Rishi Solanki
> > Enterprise Software Developer
> > HotWax Media Pvt. Ltd.
> >
> >
> > On Wed, Jan 6, 2010 at 10:59 AM, Rishi Solanki 
> > wrote:
> >
> >> To make the dropdown menu transparent go to style.css of bizznesstime
> >> theme and on line 556 change the css of #header-nav to ;
> >> background:transparent none repeat scroll 0 0;
> >> If we look at the particular applications menu in bizzness time theme it
> >> will be shown as transparent. May need to do some more fixes in css to
> >> better show it on UI.
> >> So it is possible but should not recommended as the underlying screen text
> >> overlapped on the menu links, in turn it will be a pain for user to select
> >> on the correct menu item.
> >>
> >> Rishi Solanki
> >> Enterprise Software Developer
> >> HotWax Media Pvt. Ltd.
> >>
> >>
> >>
> >> On Wed, Jan 6, 2010 at 7:53 AM, Hans Bakker <
> >> mailingl...@antwebsystems.com> wrote:
> >>
> >>> A question from one of my customers:
> >>>
> >>> the dropdown menu, is it possible to make this transparent so you can
> >>> see the underlying screen?
> >>>
> >>> Thanks in advance for your answer,
> >>>
> >>> regards,
> >>> Hans
> >>>
> >>>
> >>> --
> >>> Antwebsystems.com: Quality OFBiz services for competitive rates
> >>>
> >>>
> >>
> >
-- 
Antwebsystems.com: Quality OFBiz services for competitive rates



Re: breadcrums dropdown scheme

2010-01-06 Thread Rishi Solanki
Hi Hans,
breadcrumbs dropdown's style.css line 1080 of  #main-navigation ul li ul,
#app-navigation ul li ul
make its background to transparent will solves the transparent background
problem. But for sure it should not be recommended.


Rishi Solanki
Enterprise Software Developer
HotWax Media Pvt. Ltd.


On Wed, Jan 6, 2010 at 11:32 AM, Rishi Solanki wrote:

> Sorry, I see you are asking for breadcrubs dropdown, for that I'm not able
> to figure out how it can be achieve.
>
>
> Rishi Solanki
> Enterprise Software Developer
> HotWax Media Pvt. Ltd.
>
>
> On Wed, Jan 6, 2010 at 10:59 AM, Rishi Solanki wrote:
>
>> To make the dropdown menu transparent go to style.css of bizznesstime
>> theme and on line 556 change the css of #header-nav to ;
>> background:transparent none repeat scroll 0 0;
>> If we look at the particular applications menu in bizzness time theme it
>> will be shown as transparent. May need to do some more fixes in css to
>> better show it on UI.
>> So it is possible but should not recommended as the underlying screen text
>> overlapped on the menu links, in turn it will be a pain for user to select
>> on the correct menu item.
>>
>> Rishi Solanki
>> Enterprise Software Developer
>> HotWax Media Pvt. Ltd.
>>
>>
>>
>> On Wed, Jan 6, 2010 at 7:53 AM, Hans Bakker <
>> mailingl...@antwebsystems.com> wrote:
>>
>>> A question from one of my customers:
>>>
>>> the dropdown menu, is it possible to make this transparent so you can
>>> see the underlying screen?
>>>
>>> Thanks in advance for your answer,
>>>
>>> regards,
>>> Hans
>>>
>>>
>>> --
>>> Antwebsystems.com: Quality OFBiz services for competitive rates
>>>
>>>
>>
>


[jira] Closed: (OFBIZ-3387) Make AR Payment Groups screens consistent to the best practice.

2010-01-06 Thread Ashish Vijaywargiya (JIRA)

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

Ashish Vijaywargiya closed OFBIZ-3387.
--

Resolution: Fixed

Thanks Sumit for the contribution - Done at r896404.

--
Ashish

> Make AR Payment Groups screens consistent to the best practice.
> ---
>
> Key: OFBIZ-3387
> URL: https://issues.apache.org/jira/browse/OFBIZ-3387
> Project: OFBiz
>  Issue Type: Improvement
>  Components: accounting
>Reporter: Sumit Pandit
>Assignee: Ashish Vijaywargiya
>Priority: Minor
> Fix For: SVN trunk
>
> Attachments: 1.png, 2.png, 3.png, 4.png, OFBIZ-3387.patch
>
>
> Make "AR Payment Groups" screens consistent to the best practice. 
> Access URL -  https://demo.ofbiz.org/ar/control/FindArPaymentGroups

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



[jira] Closed: (OFBIZ-3392) XML Declaration is missing for files.

2010-01-06 Thread Ashish Vijaywargiya (JIRA)

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

Ashish Vijaywargiya closed OFBIZ-3392.
--

Resolution: Fixed

Thanks Sumit - Done at r896386.

--
Ashish Vijaywargiya

> XML Declaration is missing for files.
> -
>
> Key: OFBIZ-3392
> URL: https://issues.apache.org/jira/browse/OFBIZ-3392
> Project: OFBiz
>  Issue Type: Improvement
>  Components: accounting
>Reporter: Sumit Pandit
>Assignee: Ashish Vijaywargiya
> Fix For: SVN trunk
>
> Attachments: OFBIZ-3392.patch
>
>
> Hi All, 
> XML Declaration is missing for following files - 
> accountingtests.xml
> invoicetests.xml
> paymenttests.xml

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



[jira] Assigned: (OFBIZ-3392) XML Declaration is missing for files.

2010-01-06 Thread Ashish Vijaywargiya (JIRA)

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

Ashish Vijaywargiya reassigned OFBIZ-3392:
--

Assignee: Ashish Vijaywargiya

> XML Declaration is missing for files.
> -
>
> Key: OFBIZ-3392
> URL: https://issues.apache.org/jira/browse/OFBIZ-3392
> Project: OFBiz
>  Issue Type: Improvement
>  Components: accounting
>Reporter: Sumit Pandit
>Assignee: Ashish Vijaywargiya
> Fix For: SVN trunk
>
> Attachments: OFBIZ-3392.patch
>
>
> Hi All, 
> XML Declaration is missing for following files - 
> accountingtests.xml
> invoicetests.xml
> paymenttests.xml

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



[jira] Updated: (OFBIZ-3392) XML Declaration is missing for files.

2010-01-06 Thread Sumit Pandit (JIRA)

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

Sumit Pandit updated OFBIZ-3392:


Attachment: OFBIZ-3392.patch

Patch for missing entry.

> XML Declaration is missing for files.
> -
>
> Key: OFBIZ-3392
> URL: https://issues.apache.org/jira/browse/OFBIZ-3392
> Project: OFBiz
>  Issue Type: Improvement
>  Components: accounting
>Reporter: Sumit Pandit
> Fix For: SVN trunk
>
> Attachments: OFBIZ-3392.patch
>
>
> Hi All, 
> XML Declaration is missing for following files - 
> accountingtests.xml
> invoicetests.xml
> paymenttests.xml

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



[jira] Created: (OFBIZ-3392) XML Declaration is missing for files.

2010-01-06 Thread Sumit Pandit (JIRA)
XML Declaration is missing for files.
-

 Key: OFBIZ-3392
 URL: https://issues.apache.org/jira/browse/OFBIZ-3392
 Project: OFBiz
  Issue Type: Improvement
  Components: accounting
Reporter: Sumit Pandit
 Fix For: SVN trunk


Hi All, 

XML Declaration is missing for following files - 
accountingtests.xml
invoicetests.xml
paymenttests.xml

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



[jira] Commented: (OFBIZ-3385) Axis2 integration returns "Unsupported Content-Type: text/html;charset=utf-8 Supported ones are: [text/xml]"

2010-01-06 Thread Hans Bakker (JIRA)

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

Hans Bakker commented on OFBIZ-3385:


Chris thank you for the patch2.txt file: Committed revision 896347.

> Axis2 integration returns "Unsupported Content-Type: text/html;charset=utf-8 
> Supported ones are: [text/xml]"
> 
>
> Key: OFBIZ-3385
> URL: https://issues.apache.org/jira/browse/OFBIZ-3385
> Project: OFBiz
>  Issue Type: Bug
>  Components: framework
>Affects Versions: SVN trunk
>Reporter: chris snow
> Attachments: patch.txt, patch2.txt
>
>
> I have setup the findPartiesById service to export="true" and tried to call 
> the web service using Netbeans 6.5.
> I received the following error message:
> {code}
> com.sun.xml.internal.ws.server.UnsupportedMediaException: Unsupported 
> Content-Type: text/html;charset=utf-8 Supported ones are: [text/xml]
> at 
> com.sun.xml.internal.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:284)
> at 
> com.sun.xml.internal.ws.encoding.StreamSOAPCodec.decode(StreamSOAPCodec.java:118)
> at 
> com.sun.xml.internal.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:278)
> at 
> com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.process(HttpTransportPipe.java:180)
> at 
> com.sun.xml.internal.ws.transport.http.client.HttpTransportPipe.processRequest(HttpTransportPipe.java:83)
> at 
> com.sun.xml.internal.ws.transport.DeferredTransportPipe.processRequest(DeferredTransportPipe.java:105)
> at com.sun.xml.internal.ws.api.pipe.Fiber.__doRun(Fiber.java:587)
> at com.sun.xml.internal.ws.api.pipe.Fiber._doRun(Fiber.java:546)
> at com.sun.xml.internal.ws.api.pipe.Fiber.doRun(Fiber.java:531)
> at com.sun.xml.internal.ws.api.pipe.Fiber.runSync(Fiber.java:428)
> at com.sun.xml.internal.ws.client.Stub.process(Stub.java:211)
> at 
> com.sun.xml.internal.ws.client.sei.SEIStub.doProcess(SEIStub.java:124)
> at 
> com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:98)
> at 
> com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78)
> at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107)
> at $Proxy28.findPartiesById(Unknown Source)
> at javaapplication7.Main.main(Main.java:74)
> {code}
> Watching the tcp steam with wireshark, I can see that the prefix ns2 is added 
> to the map-Entry items:
> {code}
> http://schemas.xmlsoap.org/soap/envelope/";>
>
>   http://ofbiz.apache.org/service/";>
>  
> 
>
>   
>
>
>   
>
> 
> 
>
>   
>
>
>   
>
> 
> 
>
>   
>
>
>   
>
> 
>  
>   
>
> 
> {code}
> If I copy this soap message and paste into SoapUI, the soap call fails.  
> However, if I strip off the ns2 prefix from the map-Entry items (as below), 
> the call succeeds:
> {code}
> http://schemas.xmlsoap.org/soap/envelope/";>
>
>   http://ofbiz.apache.org/service/";>
>  
> 
>
>   
>
>
>   
>
> 
> 
>
>   
>
>
>   
>
> 
> 
>
>   
>
>
>   
>
> 
>  
>   
>
> 
> {code}
> My java class is:
> {code}
> package javaapplication7;
> import org.apache.ofbiz.service.MapEntry;
> import org.apache.ofbiz.service.MapKey;
> import org.apache.ofbiz.service.MapMap;
> import org.apache.ofbiz.service.MapValue;
> import org.apache.ofbiz.service.StdString;
> public class Main {
> public static void main(String[] args) {
> try { 
> org.apache.ofbiz.service.FindPartiesById service = new 
> org.apache.ofbiz.service.FindPartiesById();
> org.apache.ofbiz.service.FindPartiesByIdPortType port = 
> service.getFindPartiesByIdPort();
> StdString keyString = new StdString();
> keyString.setValue("idToFind");
> MapKey mapKey = new MapKey();
> mapKey.setStdString(keyString);
> 
> StdString valueString = new StdString();
>