View Full Version : Zoom 5 Beta Release questions
mrwilson74
09-25-2006, 06:16 PM
Will any of the version ever have the capability to search for ".tif" & ".max" files?
TIFF files are supported by the new Image plugin for V5.
See the thread on the new image and thumbnail features (linked in the original post) for more details.
We do not currently have plans for the .MAX (I presume 3D Studio Max) format. However, there is support for DWF (again, see links above). The former will depend on user demand/interest.
jefftheman812
09-28-2006, 05:36 AM
You can already use Zoom with a .NET web site (http://www.wrensoft.com/zoom/support/aspdotnet.html) in V4.
THis is true and not true. You can use it but only with the cgi version. This presents the problem that if you are used to modifying the search page that you will find you cannot do this with the cgi version.
I did find a way to use the asp version with .net and can provide that information if anyone is interested. That way I could still modify the search page. The specifid mod I made was creating two copies of the navigation and using CSS to show one at the bottom and one at the top of the search results.
wrensoft
09-28-2006, 06:46 AM
I think you are confusing the issues. .NET support is really unrelated to the ability to modify the source code of the CGI search script. And it is definitely unrelated to the V5 release.
The CGI is compiled C++ code. This makes it about 20 times faster than ASP, but being compiled code means you can't edit it with a text editor.
If we decided to supply a native .NET control, we would still write it in C++ or C#, and it would still be compiled and you would still not be able to edit it (as it would be a most likely be compiled server contol delivered as a DLL). The performance would be about the same as the CGI.
On the other hand, we hope to release more source code in the future. Probably including the C++ sources. Maybe as part of a SDK.
iampedro
10-03-2006, 01:32 AM
That would be great to have a dll that we could use for the search for .net....
wrensoft
10-03-2006, 03:48 AM
At the moment we can't see much of an advantage in having a DLL vs the existing CGI (which can be used with .NET).
mrwilson74
10-04-2006, 03:54 AM
HUH? That was all definitely foreign language to me!
wrensoft
10-04-2006, 04:54 AM
HUH? That was all definitely foreign language to me!
Welcome to the world of web programming and .NET developement.
saice
10-06-2006, 02:53 PM
Hi
I have been working with the new beta and the software is working perfectly. The CSS is important for the layout and while trying to adjust the CSS to the look I noticed that there are irritating <br /> that is hard to get by.
Example:
<div class="summary">
1298 results found. <br />
</div>
<div class="result_pagescount"><br />130 pages of results.</div>
I think it would be a great idea to give control over the look completely over to CSS and give an option to decide on the location of the info lines associated with search results. (searchhead, summary, pagecount, pages etc.,)
In other words. The software is brilliant, but a little bit more flexibility in layout and CSS would be nice. Any tips on getting around the above is appreciated.
Thanks
We put the BR tags there by design to allow for a decent looking set of results even when all the CSS has been removed or omitted (which happens often with beginning web developers less acquainted with CSS). However, we went out of our way to make sure that this would not hinder the flexibility of the CSS for more advanced users either, so don't worry - there is a solution to the above.
The BR tags are enclosed within the DIV tags so that you can hide them specifically if need be. For example, the following two lines in your CSS would remove the presence of the BR tags in the above example.
.summary br { display: none;}
.result_pagescount br { display: none;}
Now, if you are hoping to actually have the two elements on the same line (eg. "1298 results found. 130 pages of results"), you will also need to change the two DIV classes from their default block behaviour to be inline. The following CSS would achieve this:
.summary { font-size: 80%; font-style: italic; display: inline; }
.summary br { display: none;}
.result_pagescount { font-size: 100%; display: inline; }
.result_pagescount br { display: none;}
Similarly, you can do this with all other elements of the search result layout and create some diverse designs with some creative CSS use.
saice
10-10-2006, 01:42 AM
thanks for the tips, I forgot this option. This does everything needed.
I have been doing more testing with the V5 and it works extremely fast both for indexing and searching.
I have a question regarding XML output. As I see it one must choose between XML or traditional output. Well, I would like both. I know I can do this by running two data sets, but if you know of any alternative ways then I would appreciate to know about it. A chance for the visitors to grab a feed of their search queries is the perferred use I see for it. That could easily be done if V5 could return the search query in the cgi version for creating XML URLs on the fly.
V5 is overall excellent.
You can switch between XML and HTML output via a HTTP GET "zoom_xml" parameter. For example, linking to "search.cgi?zoom_query=cars&zoom_xml=1" will return the search results for "cars" in XML format. You could also create your own search form with the zoom_xml option as an input parameter (specified by a radio button or checkbox, etc.)
martyinsf
10-12-2006, 06:06 PM
Will V5 use the same filter files (for .doc, .ppt, .pdf,, .rtf files) as V4.2 or will a new set need to be downloaded?
wrensoft
10-12-2006, 10:12 PM
There is an expanded set in V5. There are additional plug-ins for DWF, GIF, JPG (+other image files) & MP3.
The existing plugins stay the same.
petevick
10-30-2006, 06:16 AM
Its late October, any news on the final release date chaps ??
wrensoft
10-30-2006, 09:11 AM
The major activity during the last 10 days was updating the help file and users guide. This is now pretty much complete. We found a fixed a few more bugs as well but nothing major.
The web site updates still need to be done. As does the update notification E-mail. But we'll do another deta release tomorrow or Wednesday. We expect this beta to be the same as the final release. i.e. We'll just remove the word 'beta' in a week or two.
petevick
10-30-2006, 10:05 AM
that's great. Would I be safe in downloading V5 now, or should I wait (I'm an impatient bugger :) )
You're free to get the most recent beta and have a play with that. But the new beta should be ready in a few days.
petevick
10-31-2006, 06:29 AM
I should be able to wait that long then :D
iampedro
11-02-2006, 04:44 AM
Provide support for windows vista also please...
We have done some brief testing, and Zoom does appear to run on Vista. There are some issues with FTP we will be looking into, see the Known problems thread:
http://www.wrensoft.com/forum/showthread.php?t=1128
But basically, while Vista itself is still in beta stage, not all issues may be fully resolved for some time. Please let us know if you have experienced any actual issues with running Zoom on Vista.
piconut
11-29-2006, 02:00 PM
Maybe I missed it somewhere but I was wondering if a new release date has been set yet for version 5?
wrensoft
11-30-2006, 06:59 AM
It should be tomorrow!
30/Nov/06
(Unless someone reports a serious bug, that we have missed during testing, in the next 12 hours)
vBulletin® v3.7.0, Copyright ©2000-2008, Jelsoft Enterprises Ltd.