Eight Tenths Of A Lizard 283
Palin was the first of many like-minded souls to write with this news: "On my weekly check of Mozilla's status, I ran into version .8 of Mozilla, which seems to have been released yesterday. What a nice Valentine's day gift that was. :-)" And Alphix points to the thing itself, and suggests some things
to read."
Mozilla is my daily-use,pH-balanced Web browser of late, so I'm glad to see that it can finally allow users to avoid the degrading spectacle of endlessly cycling animated .gifs.
Re:Browser good, mailer bad... (Score:2)
I am using Sylpheed [freshmeat.net], it's quite a quite good 3 pane gtk mail client, rather stable, handles international character sets.
It does the job rather well for me. (small, fast, user friendly)
Re:0.8 versus 1.0... (Score:2)
I don't think so. AOL have different needs than mozilla. They needed to get something out, even if it is crappy. Bad press is better than no press. They release bug fixes, and will release a future version based on the mozilla trunk. At the end, they will have a browser as stable as mozilla is, but will have something to show before. Net result will be positive for them *and* for mozilla (if NS6 didn't exist, you would seem hundred of comments explaining why mozilla is a failure because nothing official was released...)
Btw, mozilla is my main browser for the last 3 months. Crashes often, but is better and better.
Cheers,
--fred
You CAN turn off animated gifs in IE (Score:3)
There's all kinds of cool keyboard shortcuts in IE. My favorite is pressing F11 to get full screen mode. Browsing the web in full screen absolutely rocks.
Re:0.8 versus 1.0... (Score:2)
Re:New question... (Score:2)
What's really great (Score:2)
Turning off animated gifs in IE (Score:3)
Tools->Internet Options
Click on the advanced tab.
Under the "multimedia" section, there should be a "play animations" option. Remove the check in the checkbox in front of it.
Viola! No more animations. Although, in retrospect, some slashdot ads don't make a lot of sense now.
Is Mozilla suffering from featuritis here? (Score:3)
While features like disabling animated GIF's and disabling particular sites for popup windows, those nasty evil spamming advertisers are always brilliant at innovating new ways to bypass your filter controls.
Then, what are we to do? To respond to every one of their tricks right in the browser? Or should we separate the job and put it in a proxy server for that purpose?
The way I see it, using a proxy is the way to go. If you've tried Proximitron you'll know why. It's infinitely more configurable - user-configurable. Everyone will has the ability to scratch their own advertiser-induced itches.
Prozilla anyone?
Re:Come on slashdot! (Score:2)
We also know that version numbers are tuples, not fractions, right? Right?
Don't let the man push you around (Score:2)
I don't want to defend Netscape and its shopping buttons. The Mozilla I just dl'd doesn't have them. Most of your comments are about Netscape, so in a sense we're talking past one another. But I'll keep going anyway.j
Corporate IT guys are going to go with IE, at least in the foreseeable future. I wrote a web app for internal use at a real estate support company, and reluctantly had to agree with my boss that going IE only made sense. There are too many differences in DHTML and Javascript across platforms, almost everyone wanted to use IE anyway, and supporting other browsers would have made the project much harder to pull off. XML was a big bonus as well. And we didn't put any animated gifs in our app anyway.
But there's more to life than your cube. People wear bland clothes at work, they sit at ugly desks, and often have uncomfortable chairs. At home we have options, and hopefully we make sure things are better. I don't feel that my work environment ought to dictate how I furnish my apartment. Why should it dictate what kind of software I run?
I want to turn off ads, at least the flashing ones. Maybe that makes me sick and unamerican, but that's how I feel.
Why oh why (Score:2)
They both nicely import my NS4.7x user profiles, giving me one full set of bookmarks, so why the fuck would I then want another complete copy of the same ones imported from IE? I already synchronize them for the very rare occasion I use IE, and you cannot get rid of the IE ones!
I want to submit this to Bugzilla with many flaming comments, but fear it will be rejected
Pope
Freedom is Slavery! Ignorance is Strength! Monopolies offer Choice!
What, you want *tactful* adult entertainment? (Score:4)
> production one comes to expect from all forms of adult entertainment.
I'm not going to defend animated GIFs here--they're annoying as hell, and on a dialup 56k like most people still are using, they're absolutely evil time-wasters. I recall once being SO annoyed that a page was taking so long to load, because the animated GIF banner at the top must have had thirty friggin frames...
But I just had to ask: what do you expect *other* than sleazy, tactless production in adult entertainment? Proper, tactful production? I can see it now, on PBS's Masterporn Theatre: "Oh, Madam Deepthroat, bring forth thy heaving bosoms of delight, that I might feel them up whilst thou tastest of my knightly schlong, bedewed with premature trickles of nectar as sweet as morning dew. Oh, how I have yearned to taste thy tuna steak of love, whilst you get it on with my handmaiden in some hot girl-girl action..."
Personally, I prefer the straightforward smut of a Dark Bros. or Max Hardcore production to the polished coldness of some silly Skinemax-wannabe soft stuff. But, I digress...
Re:MS is doing the right thing (Score:2)
Re:Don't let the man push you around (Score:2)
Re:New question... (Score:2)
Re:On the topic of animated GIFs... (Score:2)
Re:Konqueror beats the Lizards ass. (Score:2)
BTW, I think Konqueror is an excellent browser.
Re:Choices! OT (Score:2)
Re:MS will exploit IE, and that will push users aw (Score:2)
Turning off animated gifs, true, there hasn't been a menu option for it. But, you can patch your netscape (any version) to play animations only once [hu-berlin.de] and then stop. I'll attach a little bit of C code I wrote that does the job for you.p
Still, it is nice to see the Mozilla guys including a preference to disable animation. Saddly, it seems that many users will never "find" it, judging from the post above.
* and "ANIMEXTS1.0" with different strings, so that
* netscape will be tricked into thinking all animated
* gifs are not to be looped. This is nice, since those
* annoying ads will play once and then stop.
*
* For more info, see this page:
* http://simmons.starkville.ms.us/tips/081097/
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/stat.h>
#define NETSCAPE "/usr/lib/netscape/netscape-communicator"
#define STR1 "NETSCAPE2.0"
#define STR2 "ANIMEXTS1.0"
const unsigned char *memstr(const char *haystack, const char *needle, int size);
int main(int argc, char **argv)
{
int fd, r, pos;
struct stat nsstat;
unsigned char *buf, *p;
r = stat(NETSCAPE, &nsstat);
if (r != 0) {
fprintf(stderr, "File %s doesn't exist\n", NETSCAPE);
exit(1);
}
buf = (unsigned char *)malloc(nsstat.st_size);
if (buf == NULL) {
fprintf(stderr, "Unable to allocate %ld bytes of memory\n",
(long)nsstat.st_size);
exit(1);
}
fd = open(NETSCAPE, O_RDWR);
if (fd < 0) {
fprintf(stderr, "Unable to open %s for read/write access\n",
NETSCAPE);
exit(1);
}
r = read(fd, buf, nsstat.st_size);
if (r != nsstat.st_size) {
fprintf(stderr, "Unable to read %ld bytes from %s\n",
(long)nsstat.st_size, NETSCAPE);
exit(1);
}
p = (unsigned char *)memstr(buf, STR1, nsstat.st_size);
if (p == NULL) {
fprintf(stderr, "Didn't find string \"%s\" within %s\n",
STR1, NETSCAPE);
exit(1);
}
pos = (int)(p - buf);
r = lseek(fd, pos, SEEK_SET);
if (r != pos) {
fprintf(stderr, "Unable to seek to offset=%d within %s\n",
pos, NETSCAPE);
exit(1);
}
r = write(fd, "NO_ANIM_GIF", strlen(STR1));
if (r != strlen(STR1)) {
fprintf(stderr, "Error writing to %s at offset %d\n",
NETSCAPE, pos);
exit(1);
}
p = (unsigned char *)memstr(buf, STR2, nsstat.st_size);
if (p == NULL) {
fprintf(stderr, "Didn't find string \"%s\" within %s\n",
STR2, NETSCAPE);
exit(1);
}
pos = (int)(p - buf);
r = lseek(fd, pos, SEEK_SET);
if (r != pos) {
fprintf(stderr, "Unable to seek to offset=%d within %s\n",
pos, NETSCAPE);
exit(1);
}
r = write(fd, "NO_ANIM_GIF", strlen(STR1));
if (r != strlen(STR1)) {
fprintf(stderr, "Error writing to %s at offset %d\n",
NETSCAPE, pos);
exit(1);
}
close(fd);
return 0;
}
const unsigned char *memstr(const char *haystack, const char *needle, int size)
{
const char *p;
int len;
len = strlen(needle);
while (size > 0) {
p = memchr(haystack, *needle, size);
if (p == NULL) return NULL;
size -= (int)(p - haystack);
if (size >= len && memcmp(p, needle, len) == 0) {
return p;
}
p++;
haystack = p;
}
return NULL;
}
Re:MS will exploit IE, and that will push users aw (Score:2)
Re:Why is it taking so long? (Score:2)
> interface, etc
Nonstandard/buggy rendering, runs only on Windows*, all kinds of security problems, etc.
* MacIE is a completely separate code base.
The closed-source Netscape 4 was complete garbage internally and they had to throw it away. It's taken a few years to recover from that.
Have they fixed plug-ins in Linux? (Score:2)
Also, while talking about external programs: how about being able to link to external DOWNLOADERS! I prefer to use NT [krasu.ru] (the program, not the OS) to do my downloads, and I'd like to plug that into Mozilla. I'd like to see
Plugger [hubbe.net] style functionality built-in to Mozilla to allow me to point the lizard at my video and audio format players.
I know what you mean, (Score:2)
I started using it because I had a 14" monitor and wanted to see more page, continued using it even on a 21 incher because it was so sweet. Much better in my opinion than IE's fullscreen.
Would love to see a Mozilla version. Mail them at info@inquare.com [mailto], pressure will make them comply.
Re:MS will exploit IE, and that will push users aw (Score:2)
I don't want to know how I can turn off whichever preferences in a particular version of netscape; I want to know when browsers like netscape will let a user create my own buttons and customize their actions.
OF COURSE I can go to my preferences, but I can't just have one button that does a frequent task. Similarly, I liked the "Font Size" button they had in IE; in Netscape, that might make up for the lack of a "Zoom" feature (Opera and Galeon did this well).
Also, that code you posted is pretty long and ugly; not only would a link have sufficed, but couldn't someone have neatened up their error handling code? I wrote a function in C just for that, and it has greatly reduced the amount of pointless 'if' statements I have had to write, and improved debugging.
...and while I'm being pedantic, why the hell did you put my user name in quotes, "pjrc"?
---
pb Reply or e-mail; don't vaguely moderate [ncsu.edu].
Re:SSL = Bad (Score:2)
iCab does that (Score:2)
Re:New question... (Score:2)
Lots of UNIX systems have Netscape installed; they might also have lynx, and around here possibly a few file browsers that double as web browsers, IE for Solaris or HP/UX, Amaya, and a host of other forgotten browsers.
And, AFAIK, Stallman wouldn't be terribly happy with Mozilla, because it isn't GPL'ed. The MPL ain't bad, but I'm sure he'd find something to object to in there. Now *that* would be somewhat amusing.
In short, reply to someone who knows less about the subject next time, Matt.
---
pb Reply or e-mail; don't vaguely moderate [ncsu.edu].
Re:8/10ths, and I am sad (Score:2)
It only kills the current window. Workaround: open another window, switch the skin from it, then close it.
> It'll get better soon, honest
It did get a *hell* better in the last months. Not really usable for general consumpsion, but it is already my default browser.
> Is the emperor wearing clothes?
About the huge amount of bugs you have, you have to admit that they are not in fundamental parts of the browser. You can browse the web with mozilla with a non proprietary software.
This is huge goodness. Let's say that the emperor have bathclothes..
And thanks for supporting this project. *Everybody* will benefit of it.
Cheers,
--fred
Re:Mozilla is shit (Score:2)
Also, there is an additional stage where interface specifications are compiled into header files. The interface specs allow cross language access to components at runtime.
"Just a browser" today means an entire interpreted, garbage collected language (javascript), HTML, XML and XSL rendering and a ton of other stuff. If you want a lightweight browser, get lynx.
Finally, while mozilla is a browser, it is also a platform for developing OS independant applications with web and web-like technologies (see mozdev.org). It has a scope as broad as a OS.
Eventually, it will compile into both the entire mozilla system *AND* a compact embeddable component, but its not quite there yet (but really close!).
status of Fizzilla? (Score:2)
it's great to see Mozilla shaping up. i've been trying out Mozilla on a regular basis since M4 (yeah, i'm a glutton for punishment), but it's only recently that i've been able to use it on my Windows machine at work as my primary browser.
at home however, i run the MacOS, and while IE 5.0 on MacOS 9 is still the best browser i've ever tried, i now run a later build of MacOS X for development purposes. IE 5.1 on MacOS X is severely lacking (a very poor carbon port), and i'd really like to make the switch to Mozilla on this platform. does anybody know what's going on with Fizzilla [mozilla.org], the MacOS X port of Mozilla? specifically, i'd love to be able to run FizzillaMach [mozilla.org] that uses the UNIX code as a back end and a carbon port of the Mac code as the interface.
right now the latest build of Fizzilla is based on an early January nightly build, and while that's good, it still has some pretty nasty bugs that keep me from using it on OS X. it's a shame because the recent builds of Mozilla have been so good. does anybody know if there is there active development of Fizzilla? are they planning on releasing a new build, perhaps based off of 0.8? on March 24th a lot of people are going to be looking for a Mac OS X-native web browser, and IE is already going to be included in the dock by default. it's going to be important to have the Mozilla alternative available at that time. :I ..
- j
Re:MS will exploit IE, and that will push users aw (Score:2)
...phil
Re:mailll (Score:3)
setenv MAIL "xterm -e mutt"
for example
Turn off ads (Score:3)
The IJB is available for UNIX, Microsoft Windows, and Linux. Configuration is just a little bit complicated, but no more so than any other standard UNIX daemon.
Alos, there's a truly wonderful program by the name of WebWasher [webwasher.com] that will do that same thing under Microsoft Windows. It's got a very slick interface, awesome features, and some very friendly guys working on it. If you have any Microsoft Windows clients, I would highly recommend installing WebWasher on them.
Definitely check out Squid [nlanr.net] as well. It's a caching proxy server that runs under UNIX and Linux. I've used it for years.
Re:omg (Score:2)
--Asa
Animated GIFS? (Score:2)
I blew away
Re:seems nobody mentioned.... (Score:2)
--Asa
Re:Turn off ads (Score:2)
I've considered porting the whole lot to mozilla, and probably will someday. I'd like to be able to take advantage of Mozilla's parser to do the filtering. Right now the HTML has to be parsed twice; once for the proxy, and once for the browser.
--Bob
Re:On the topic of animated GIFs... (Score:2)
Re:You CAN turn off animated gifs in IE (Score:2)
Ditto for Netscape. Neither will really stop if the site does one of those old push-style animations to rotate banners on the fly...
Fullscreen is something I have wanted in Netscape since 2.0 All this wasted screen real estate telling me what application I'm running, what site I'm on, etc.
I wonder if the memory utilization is down on Mozilla yet... I guess I'll have to give it a shot.
Does anybody know if Mozilla can be coaxed into fullscreen?
Re:MS will exploit IE, and that will push users aw (Score:3)
On NS 4.x and IE 5.5 there is such a button, and it's right there on the toolbar! It's the "Stop" button. Once a page has finished loading, press the stop button. This kills all the flashies dead in their tracks. I do this all the time to get away from the distractions of a xmas tree of gifs most sites have turned into.
The nice part about this is that the sites I frequent get the ad hit, which isn't an option with something like junkbuster. I rather like the notion that those sites are getting the revenue from my visit. Might mean they stay around a little longer and all that.
"...cookies..."
Konqueror is the best I've seen in this regard. Each site that asks for a cookie Konq prompts you for. I know other browsers have this option, but in Konq you can specify to allow or deny all future cookies from a specific domain. It is perhaps Konq's best feature yet.
Actually, I personally don't think we need a button to turn it off. Instead, how about simply removing that damn "window.close()" event entirely from the language? Is there any real use for this event besides throwing gobs of advertising at you as you attempt to leave a site? It's not even effective advertising, as the audience in question isn't going to be looking at the message, but instead how to deal with a browser suddenly out of control.
The other annoying aspect to JavaScript are them pop-up windows. Unfortunately, there are a number of legitimate uses for these making it difficult to say we should just get rid of them entirely. If there were some tool on a bar to deal with these that might be worthwhile. Again, I still don't think that totally disabling JS, even as a switch, is a reasonable solution when there are alternatives that haven't yet been explored.
Re:Faster, Leaner, and Meaner? (Score:2)
On or about september 22 a development branch called MN6 was cut from the Mozilla trunk. This branch was a slower moving branch that resulted a couple months later in the Mozilla code which was at the heart of the Netscape 6 product.
a couple weeks after the MN6 branch was cut there was a Mozilla Milestone made from the trunk. This was M18. The next trunk Milestone was 0.7 in early January and the latest tunk release is 0.8
--Asa
Re:Konqueror beats the Lizards ass. (Score:2)
My only real problem has been that you get "Connect refused" errors a lot more than in Communicator 4.X and that it will mess with your back/forward list of sites visited when you do. So, I don't really see it as a "buggy piece of shit," but could you show me something about feature comparisons between the two?
Re:Animated GIFS? (Score:2)
--Asa
mail servers with ldap support (Score:2)
--
Re:Animated GIFs and Interface Design (Score:2)
Yet another reason why I prefer Netscape 3.0 (Option--uncheck-image-autoload, Option--uncheck-enable-Java/shit) over Netscape 4.x (Edit-prefs-advanced-click/click/click-ok)
The more inconvenient you can make it for the user to toggle shit like Java, proxying, etc., the more likely they are to see the ads.
Now watch my UNIX port of Netscape 4 take 20 seconds to render a pile of tables where Netscape 3 would have done it in less than one.
When Mozilla shows they want to write a great browser, not a "look at how deep we can bury the features" (NS4) or a "k00l, itz gawt sk1nz!" memory hog (XUL)... oh hell, why bother finishing the sentence. We know they won't.
Re:Have they fixed plug-ins in Linux? (Score:2)
However, if you do an LD_PRELOAD=libXt before mozilla-bin gets loaded, then all will be well.
Re:About bloody time... (Score:2)
--Asa
Re:Turn off ads (Score:2)
I stumbled upon something very neat the other day... if you're on a machine where you can't install any of the above (such as at work) or don't want to mess with the browser settings, just go to SafeWeb [safeweb.com].
The nice thing is that it also encrypts everything you view with 128-bit SSL, so you can defeat those who sit around and read weblogs all day at your place of employ.
It has it's annoyances, but it works well for me. At work, I don't have to fear of accidentaly clicking on a link that takes me to pr0n. (Yes, completely unintentional, I assure you.
The only thing is that it's a
Re:Have they fixed plug-ins in Linux? (Score:2)
Re: Text entry widget (Score:2)
I'm reading this thread using Mozilla 0.8 (2001021502) Wallstreet MacOS 8.6 vga out to a Dell monitor, and the widget works fine. Perhaps it's interacting badly with your video card &/or driver?
if they would just fix Mac IE's stabilityI want to know where the heck IE 5.5 went. It was demoed [appleinsider.com] at MacHack [zdnet.com] last summer. I can only guess they postponed it until the OS X release party.
Re:MS will exploit IE, and that will push users aw (Score:2)
---
Come on slashdot! (Score:2)
--
The last blocker bug... (Score:5)
http://bugzilla.mozilla.org/show_bug.cgi?id=689
Relating to slashdot's troubles earlier to-day.
Re:New question... (Score:2)
Actually Mozilla is now released under a dual MPL/GPL license. So RMS should be quite happy with it.
Check it out! [mozilla.org]
Re:Faster, Leaner, and Meaner? (Score:2)
:)
Faster, Leaner, and Meaner? (Score:3)
* Seems faster than the old 0.6 or 0.7 builds. (ie the menus seem zippier).
* Seems to load faster than previous versions.
* Still can't minimize the download window w/o minimizing the entire Mozilla app.... (what gives?)
* Still having trouble installing JRE 1.3
Overall, 0.8 seems to be faster, and generally better than any of the previous builds.
Gururise
Garden Grove Real Estate [erachampion.com]
What happened to LiveConnect? (Score:2)
Re:0.8 versus 1.0... (Score:2)
I sitll agree, netscape 6 sucks though.
P.S. This release was 2 days late! It was forcast for the 12th feb! (Well, arround).
Good job guys, keeping to a schedule. Should look forward to 0.9 about the 3rd week of march then, and hopefully 1.0 at the end of April.
Re:Have they fixed plug-ins in Linux? (Score:2)
PGP going into mozilla too (Score:2)
New question... (Score:5)
The real issue is, what will happen to Netscape? They aren't losing the browser war now because of Mozilla. Now it's because of AOL, who makes every stable Mozilla release into a horribly patched, rushed Netscape release with extra annoying commercial features and bundling that none of us want or need.
Also, despite the benefits Mozilla has seen due to Open Source development, I doubt it will do as well without Netscape, as gutted as it is. JWZ said that the benefits gained from opening a project like that is about 30%, which means that 70% of the work has to be done by AOL/Netscape/Time Warner, and if AOL loses this war to Microsoft, we might lose a lot of developers.
Also, it sucks seeing a great team of people turn into a large impersonal entity that no one really likes. As the Open Source community is already developing other browsers, it isn't clear how much work will be put into Mozilla, and how much will be spent reinventing the wheel.
I only hope that a truly impressive, usable browser comes out of all this: one that doesn't annoy me and show me ads, but rather lets me tell it what I want it to do. Being able to set a level of HTML compliance would be nice, as well.
---
pb Reply or e-mail; don't vaguely moderate [ncsu.edu].
Re:Have they fixed plug-ins in Linux? (Score:2)
Where are you getting your plugin? Is it the actual Macromedia plug in or a clone?
What about other plug-ins?
Re:MS will exploit IE, and that will push users aw (Score:2)
Of course if they did, they would be instantly crucified for their anti-competitive action of not letting other companies derive advertising revenue, noting that microsoft derives no revenue from banner ads, yadda yadda yadda.
Go run Proximitron (no link, I'm lazy, use Google. If I could use everything2 links, that'd be nice, but e2 seems to be doing worse than slashdot these days). Don't mind the hideous interface (there's an option to turn it off, then it becomes merely idiosyncratic), it's otherwise a great tool. I use it to look at the various headers when I do server work. It can do all kinds of filtering and transforms on headers and content, which includes blocking sites, cookies, etc. Has built-in filters to animate gifs only once, as well as popup-stoppers that don't turn off all javascript, etc.
--
Re:Faster, Leaner, and Meaner? (Score:2)
Blackdown's JRE was working for some folks last I heard so if you've got that give it a try.
--Asa
How do you disable "tooltips"? (Score:2)
How do you disable the floating tips that appear when your mouse strays over the back button too long? Under Netscape 6 for Solaris, I've seen these floating windows remain on the desktop even when Netscape is iconified.
I found a setting for "browser.chrome.toolbar_tips - false" on developer.netscape.com, but this doesn't seem to work.
I'd use Mozilla, but I like to use Solaris x86 at work, and I don't see binaries for this platform. Yes, I know I could build it...
Animated GIFs and Interface Design (Score:5)
I've watched naive users (e.g. my parents) use a browser. When faced with an agonizing animated GIF, giant blink text, or horrible background, they move the mouse to the offending item, and try to turn it off. This is, of course, in keeping with the GUI concept: select the item, then manipulate it, perhaps with a right mouse click. This corresponds deeply with reality: if a mosquito is biting me, I focus on it and take action.
Browser interfaces are often counter-intuitive because the cure is hidden in deep menu items, e.g. edit->prefs->advanced->.... Users rarely find these things, and if they do, don't know what they do. My dad doesn't want to disable all Java apps, he just wants to stop the pain he is experiencing on the page he is currently visiting. To make a browser great, watch your new users very closely.
Re:Kill the gifs! (Score:2)
Mozilla is shit (Score:2)
Jesus Fucking Christ, the source tree is 150M large. I left it building overnight, running under time(1), and when I woke up, I found out that it took 58 minutes to build. 58 minutes! That's just a hair shorter than it takes to build my base FreeBSD system from scratch! I thought Mozilla was supposted to be a browser, for Christ's sake!
So after balking at the exceptionally long build time, I ran du to find out just how large this pile of shit is... with object files, binaries, and source (remember, 150M), the tree was 1.4G. That's very close to the the size of my /usr...
Not to mention the fact that it still doesn't render pages right, it takes a while to render widgets, and it crashes.
The team ought to focus on making a lean, fast, quality browser... every time I try to build this thing, it gets bigger... and for what?
A new year calls for a new signature.
Choices! (Score:4)
Re:The last blocker bug... (Score:2)
Re:Choices! (Score:2)
But the DEB package depends on libqt2.2-gl. I don't have the library installed, but it turns out that everything works for me.
You've misread the dependency line. It is this (adding some white space):
Depends: libc6 (>= 2.1.2), libjpeg62, liblcms (>= 1.06-0), libmng (>= 0.9.3-0),libpng2, libqt2.2 (>= 2:2.2.3-0.potato4) | libqt2.2-gl (>= 2:2.2.3-0.potato4), libstdc++2.10,
libz1, xlib6g (>= 3.3.6-4)
So, it depends on either libqt2.2 or libqt2.2-gl. You apparently have libqt2.2 installed.
However, it keeps slowing down itself over time until I have to exit the browser and run it again.
This is a known bug, introduced in the switch from 4.0-betaX to 5.0-betaX. Check the Linux opera newsgroup [opera.no] for some reports of it.
Heresy! (Score:2)
Only Linux truly loves you. Human beings just can't grep all the processes you're going through.
Re:The last blocker bug... (Score:2)
Index: nsAppRunner.cpp
RCS file:
retrieving revision 1.263
diff -u -r1.263 nsAppRunner.cpp
--- nsAppRunner.cpp 2001/02/12 21:16:02 1.263
+++ nsAppRunner.cpp 2001/02/16 00:11:44
@@ -1195,6 +1195,7 @@
int main(int argc, char* argv[])
{
+ NS_ASSERTION(bSlashdotRunning,"Can't start without SlashDot");
#if defined(XP_UNIX)
InstallUnixSignalHandlers(argv[0]);
#endif
---
Re:The last blocker bug... (Score:5)
Fuck, that's funny. So, go on: 95 posts saying that its bloatware and why can't we have a lighter browser; 47 pointing out the obvious and saying that Netscrape 4.7.2 leaks memory; 22 posts on the subject of IE being better; At least some figting pointlessly over whether the UI stinks, or it's just that we don't understand how important XML is...
Good work, Mozilla dudes.
Dave
Re:Kill the gifs! (Score:2)
the library Mozilla uses for animated gifs is in fact called 'libpr0n'
[gjw@snoopy mozilla]$ find . -name '*pr0n*' -print[gjw@snoopy mozilla]$ find . -name '*pron*' -print
[gjw@snoopy mozilla]$ find . -name '*porn*' -print
[gjw@snoopy mozilla]$ find . -name '*p0rn*' -print
[gjw@snoopy mozilla]$
Nice thought, but please verify rumors before spreading them.
Re:MS will exploit IE, and that will push users aw (Score:2)
Just curious here, but I'm left wondering what kinds of things you do at the triggering of a window.close() event? It seems to me to be pretty rare for even GUI apps to need this unless they're doing some kind of memory clean up. Browser based apps generally don't need this kind of thing, so I'm just left here curious as to the need still yet.
Kill the gifs! (Score:2)
Good riddance and good night.
Re:I've been Netscape free for a couple days now.. (Score:2)
Re:SSL = Bad (Score:2)
Am I the only person who things SSL is the most screwed up thing about this program?
No, you're not. Take a look at bug #60912 [mozilla.org] and bug #31174 [mozilla.org], for starters.
Re:mailll (Score:2)
setenv MAIL "xterm -e mutt"
Nice thought, but $MAIL is already used to point to your mailbox -- /var/spool/mail/username or /home/username/Maildir/ or what have you.
How about using $MUA for text MUAs like mutt, or... hmm... maybe $X11_MUA for X11-based MUAs like "xterm -e mutt"?
8/10ths, and I am sad (Score:2)
It's still got so many bugs. The text entry widget is broken. It kills Windows dead (real hard, I know). Changing the skin kills the menus (File and Edit works, everything after View doesn't). It crashed getting my POP email. On and on and on.
Did I get a bad build (build ID 2001021503)? Is my machine misconfigured? What the hell is going on?
I don't want to make this sound like a troll or flamebait. Its really not, in my mind. Its the plaintive wail of someone who has spent the past year or so trying to tell his co-workers, friends, and random people on the street to support this project, "It'll get better soon, honest". It is better now, to be sure. It hasn't crashed in the last 8 minutes or so its been running on this machine. Joy. It hasn't finished rendering the submit page, and for that matter it never seems to finish (looking at the stdout in the xterm above for the past few pages I've loaded).
Will 1.0 actually work? Is the emperor wearing clothes?
Funny how people do opposite of what Mozilla says (Score:2)
">Mozilla is my daily-use,pH-balanced web browser of late
Of course, the people at Mozilla were just saying don't set the version 0.8 as the default browser - perhaps they're simply recommending waiting a few builds for more bug fixes.
On another note, I was encouraged by this:
"Mozilla development work now is focused on bug squashing, improved stability, and better performance."
Nice to see that performance is being worked on - that is my main critism of most browsers for Linux (Konqueror is fast, but it wouldn't properly display a few pages for me in KDE 2.0.1, so I'll wait a few versions). For me, I'm still stuck with Netscrape 4.7 on both my Win comp and my Linux comp, because I want the same browser for both, yet reasonably full featured and psuedo-reliable (Netscape crashes maybe once every two weeks of hard use, not too bad for me).
Anyway, it's promising to see Mozilla and Konqueror coming along nicely. Good work.
Re:Mozilla is shit (Score:2)
--disable-debug
--disable-dtd-debug
--enable-strip-libs
--disable-mailnews (!!)
--disable-tests
--enable-optimize(=flag)
etc. etc. Don't tell me how big it is, use your options to make it smaller. You *do* have the source, after all.
Re:Wow... (Score:2)
Probably it could be done in less. Depends on how minimal you want to be. Most people would want it to have all the fancy do-dads like being able to download stuff.
Also the other poster is right when he says that gtk-mozembed doesn't have cookie support.
Re:MS will exploit IE, and that will push users aw (Score:2)
> let a user create my own buttons and customize
> their actions.
If you don't mind hacking XML/Javascript it's dead easy to do this in Mozilla right now, without having to recompile anything. Take a peek inside the JAR files you downloaded. (They're just ZIP files by another name.)
> Similarly, I liked the "Font Size" button they
> had in IE
There's a menu item
If Timothy is so opposed to animated GIFs... (Score:4)
Sorta funny to slam one of Slashdot's only revenue streams...
Re:MS will exploit IE, and that will push users aw (Score:2)
Yeah (Score:2)
The Microsoft optical 2 button + wheel mose is the only good M$ product I've ever encounterd. If they only made it in mac colors...
Re:Funny how people do opposite of what Mozilla sa (Score:2)
um. no the people at Mozilla did not say that. a guy from the webpages mozillaquest.com said that.
--Asa
Browser good, mailer bad... (Score:4)
The widgets for lists and trees are terrible in Mozilla (at least on Unix), and it really makes me wish that the Moz folks had decided to stay with Gtk+ for the toolkit, rather than rolling their own for the sake of portability.. I'm not sure they knew what they were getting into with a new toolkit, especially since they'll probably have to deal with the same things that the Pango [pango.org] folks are..
Anyway, back to my initial query -- what are people using instead? There have been a number of clients based on toolkits like Tk (blech) and even straight Athena widgets (triple blech). The nicer-looking clients (IMHO) seem to be all glam and no substance.. What's up with that?
If someone can find me a 3-pane Gtk+ or Gnome GUI client that is stable and that can handle PGP/GPG, I'd be forever grateful.
--
Re:8/10ths, and I am sad (Score:4)
I would suggest watching http://www.mozillazine.org/build_comments/ [mozillazine.org] and getting or not getting builds based on the excellent comments Asa puts up there.
I'm not sure why your text entry widget wasn't working; if you could file a bug report on it (http://bugzilla.mozilla.org [mozilla.org]) that would be great. The menu bug is a very recent regression and is being worked on.
Re:mailll (Score:3)
That said, you are not the only one who wants this functionality. See http://bugzilla.mozilla.org/show_bug.cgi?id=11459 [mozilla.org].
The discussion on that bug includes a way to fix it using Protozoilla. This fix is currently being considered for inclusion in the main source tree.
Re:Faster, Leaner, and Meaner? (Score:3)
Re:Browser good, mailer bad... (Score:4)
-Ben Goodger
-Netscape Navigator
mailll (Score:3)
<rant>.
why on earth does mozilla not let me link my <a href="mailto:blah"> to another app? this just seems absolutely stupid!
cause honestly, who would want to use mozilla mail when you could use something like pronto.
</rant>
im refering to the linux version, havent tried any other os's in a few years
"Who is General Failure and why is he reading my hard disk ?"
You know what would make me switch to Moz? (Score:3)
--
We are In an internet world with no borders nor fences, who needs windows and gates...
MS will exploit IE, and that will push users away (Score:3)
IE is a great browser, but it lacks some important features. It's hard to control javascript, for example, and you can't turn off animated gifs. I don't think that's accidental. If you let people turn off the ads, the advertisers won't be happy, and as a good multi-national corporate citizen, MS probably won't want to do anything to jeopardize the platform's value to advertisers.
There's no way (at least no easy way) to convert a real video file into something you can edit or recompress. Why? It's a feature that content providers want. To me it's a bug. I can understand Real doing that, and having a proprietary data format comes in handy.
More and more I think we're going to see these large companies deliberately crippling our tools for the benefit of content providers. But that only works with proprietary data formats and protocols. The web is still open.
The big story in advertising is pop-up windows. If Mozilla bills itself as the browser that helps you defeat that annoying ads, a lot of people will respond to it. And a lot of people will put up with annoying little errors as they get worked out, because the pop-up windows are incredibly annoying. MS isn't going to do that. They'll never side with their users over the content providers. That leaves a niche.
As for me, the ability to turn off animated gifs will be enough to make me switch. Those things really bug me.
All of these ads are going to get worse and worse. Mozilla should bill itself as the answer. It is the answer. And we need it.
Re:You know what would make me switch to Moz? (Score:3)
You can even disable opening new windows when a website specifies target="_blank" on a link.
Stuart.
Re:MS will exploit IE, and that will push users aw (Score:3)
For instance, why can't I bind a button to turn off animated gifs, cookies, and JavaScript? Microsoft considered making a similar button in IE, but stopped when people started calling it "The Porn Button". But if that's what users want, they should be able to do it.
The web is becoming overrun with proprietary data formats and protocols, but at least the open ones do get more popular. Notice the popularity of mp3's, Shockwave Flash, DivX-encoded movies, and mpegs. That's because there are at least players out there for everyone, and the tools aren't too hard to find.
Pop-up windows and banners don't necessarily work; web advertising needs a different model that doesn't involve annoying the consumer. Maybe product placement would work somewhat better, or text ads like Google, or little "sponsored by" buttons.
Personally, I use junkbuster to get rid of ads; it's also cross-platform, and cross-browser compatible, and works rather well.
---
pb Reply or e-mail; don't vaguely moderate [ncsu.edu].
Pop-up disabling now possible (Score:5)
Well, then it's time to switch to Moz. Quoting the 0.8 release notes [mozilla.org]:
There are several new hidden prefs (UI will be added eventually) to turn off various annoying features on web pages:
user_pref("capability.policy.popupsites.sites", "http://www.annoyingsite1.com http://www.popupsite2.com");e rnal.open","noAccess");
user_pref("capability.policy.popupsites.windowint
user_pref("capability.policy.default.windowintern
user_pref("browser.target_new_blocked", true);
Cheers,
-j.