Al,
Thank you. I don't know if it used to work, yesterday was the first time I'd tried it. Andrew On Wed, 2006-03-01 at 20:39 -0700, Al Byers wrote: > Andrew, > > Did it used to work? I don't see how. I put a fix into Rev 6889 that > eliminates that problem. Let me know of any others. > > -Al > > Andrew Sykes wrote: > > >Hi, > > > >I'm trying to upload an image in the content application, but I keep > >getting this error. > > > >The following required parameter is missing: [resequence.contentIdTo] > > > >Can anyone explain what I'm doing wrong? > > > > > > > _______________________________________________ > Users mailing list > [hidden email] > http://lists.ofbiz.org/mailman/listinfo/users Kind Regards Andrew Sykes <[hidden email]> Sykes Development Ltd http://www.sykesdevelopment.com _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
In reply to this post by Andrew Sykes
Andrew, Off the top of my head I don't think there is anything in place for doing this, but I like the idea... it would certainly be useful for lots of stuff. This could be done based on the timestamps that the Entity Engine automatically populates and that the EntitySync and other tools use. It's probably best to use the last updated transaction time stamp for the best consistency and such. -David On Mar 2, 2006, at 4:56 AM, Andrew Sykes wrote: > Hi, > > Would it be a good idea to add a fromDate and thruDate to the entity > export stuff in webtools? > > I think this would be a handy thing when preparing seed data as it > would > allow the developer to quickly extract only the changes he'd made. > > Perhaps there is another way of doing this already...? > -- > Kind Regards > Andrew Sykes <[hidden email]> > Sykes Development Ltd > http://www.sykesdevelopment.com > > > _______________________________________________ > Users mailing list > [hidden email] > http://lists.ofbiz.org/mailman/listinfo/users _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
In reply to this post by oceatoon
Not sure if this will work for your
situation, but one option that is much simpler than a recursive check is to
copy all product members from a subcategory into their parent category. So
each of the 4 main categories will have all products that can be found in each
of their subcategories, and users can still drill down and search subcategories
to filter products. You can modify the main category templates to only display
subcategories if you don’t want all the individual products showing up. This
is how many big online stores (like circuitcity.com) do it. If you go this way, there is an easy tool
in the Catalog Manager that lets you copy all members from one category to
another. Good luck, sterling From: tibor katelbach
[mailto:[hidden email]] it seems it already works
with recursive inCategory check :) On 3/2/06, tibor
katelbach <[hidden email]> wrote: Thanks every one for these efficient directions Tibor On 3/1/06, Sterling
Okura <[hidden email]> wrote: Tibor, I forgot to mention one more suggestion. You might want
to comment out the variant product search code in isProductInCategory() method
if you don't use variants, or if all of your virtual products belong to the
same categories that their variants do. What that code does is for every product that doesn't belong
to that category, it does a non-cached findByPrimaryKey to grab the Product
entity and check for variants, and if it finds variants if checks each one to
see if they belong in that category. I noticed a huge performance
increase by commenting out that code. Warm regards, sterling From:
Tibor, Rather than trying to convert a list of strings to a list of
GenericValues, it might be easier to use the CategoryWorker's
isProductInCategory directly (since that's what filterProductsInCategory method
ends up calling anyway). Just iterate through list of ID's and display any that return
true. public static boolean isProductInCategory(org.ofbiz.entity.GenericDelegator delegator, java.lang.String productId,
java.lang.String productCategoryId)
throws org.ofbiz.entity.GenericEntityException -sterling From: tibor katelbach [mailto:[hidden email]] Yes you're right On
3/1/06, Andrew Sykes <[hidden email]>
wrote: Tibor,
_______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
In reply to this post by byersa
Al,
It appears that EditElectronicText does not retrieve a stored record, but it does update. E.g. Create a data resource, create a text entry, go back to data resource and click the "text" tab, the box will appear empty. -- Kind Regards Andrew Sykes <[hidden email]> Sykes Development Ltd http://www.sykesdevelopment.com _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
Al,
I have given David a patch for this, so you can ignore the last email. On Sun, 2006-03-05 at 13:09 +0000, Andrew Sykes wrote: > Al, > > It appears that EditElectronicText does not retrieve a stored record, > but it does update. > > E.g. Create a data resource, create a text entry, go back to data > resource and click the "text" tab, the box will appear empty. -- Kind Regards Andrew Sykes <[hidden email]> Sykes Development Ltd http://www.sykesdevelopment.com _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
In reply to this post by byersa
Al,
The upload page doesn't throw up an error anymore, but it doesn't actually seem to do anything!? Perhaps I'm just looking in the wrong place, but I can see any evidence that it is actually storing the image, when you upload an image, there seems to be a load of serverhit associated stack trace generated, but I can't see anything particularly pertaining to images. Sorry to be a pain. -- Kind Regards Andrew Sykes <[hidden email]> Sykes Development Ltd http://www.sykesdevelopment.com _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
Andrew,
There are a couple of places from which documents can be uploaded. Can you tell me the path that you were using? I will try to add back some of the work that we have done to do a better job of upload and display. -Al Andrew Sykes wrote: >Al, > >The upload page doesn't throw up an error anymore, but it doesn't >actually seem to do anything!? > >Perhaps I'm just looking in the wrong place, but I can see any evidence >that it is actually storing the image, when you upload an image, there >seems to be a load of serverhit associated stack trace generated, but I >can't see anything particularly pertaining to images. > >Sorry to be a pain. > > _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
Al,
Thanks for the quick response. This is the same URL I previously reported a problem with... /content/control/UploadImage Andrew On Mon, 2006-03-06 at 21:43 -0700, Al Byers wrote: > Andrew, > > There are a couple of places from which documents can be uploaded. Can > you tell me the path that you were using? I will try to add back some of > the work that we have done to do a better job of upload and display. > > -Al > > Andrew Sykes wrote: > > >Al, > > > >The upload page doesn't throw up an error anymore, but it doesn't > >actually seem to do anything!? > > > >Perhaps I'm just looking in the wrong place, but I can see any evidence > >that it is actually storing the image, when you upload an image, there > >seems to be a load of serverhit associated stack trace generated, but I > >can't see anything particularly pertaining to images. > > > >Sorry to be a pain. > > > > > > > _______________________________________________ > Users mailing list > [hidden email] > http://lists.ofbiz.org/mailman/listinfo/users Kind Regards Andrew Sykes <[hidden email]> Sykes Development Ltd http://www.sykesdevelopment.com _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
Has anyone had a look at FCKEditor?
http://www.fckeditor.net We use it a little, it seems quite a good package. It is licensed under LGPL, I'm not sure how compatible that would be... Any thoughts? -- Kind Regards Andrew Sykes <[hidden email]> Sykes Development Ltd http://www.sykesdevelopment.com _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
from what I have read, on the list LGPL is not able to be included in
Source. I assume you are talking about WYSIWYG for the widgets. it seems to me we already have this, in the rendering engine for the widgets. It just has to be able to render in a window when you point to a widget. a sub window would have the widget XML so you can create or edit it. Maybe initialize the windows with a widget framework, with selection of the framework. the Frame work selection could be an XML. Not suggesting any error correction, at this point, just put the hooks in for later. At least that is what I am muddling with in my mind. Andrew Sykes sent the following on 3/7/06 1:58 AM: > Has anyone had a look at FCKEditor? > http://www.fckeditor.net > > We use it a little, it seems quite a good package. > > It is licensed under LGPL, I'm not sure how compatible that would be... > > Any thoughts? _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
BJ,
Thanks. On Tue, 2006-03-07 at 02:24 -0800, BJ Freeman wrote: > from what I have read, on the list LGPL is not able to be included in > Source. > > I assume you are talking about WYSIWYG for the widgets. > it seems to me we already have this, in the rendering engine for the > widgets. It just has to be able to render in a window when you point to > a widget. > a sub window would have the widget XML so you can create or edit it. > Maybe initialize the windows with a widget framework, with selection of > the framework. the Frame work selection could be an XML. > Not suggesting any error correction, at this point, just put the hooks > in for later. > > At least that is what I am muddling with in my mind. > > > Andrew Sykes sent the following on 3/7/06 1:58 AM: > > Has anyone had a look at FCKEditor? > > http://www.fckeditor.net > > > > We use it a little, it seems quite a good package. > > > > It is licensed under LGPL, I'm not sure how compatible that would be... > > > > Any thoughts? > > _______________________________________________ > Users mailing list > [hidden email] > http://lists.ofbiz.org/mailman/listinfo/users Kind Regards Andrew Sykes <[hidden email]> Sykes Development Ltd http://www.sykesdevelopment.com _______________________________________________ Users mailing list [hidden email] http://lists.ofbiz.org/mailman/listinfo/users |
Free forum by Nabble | Edit this page |