Sponsored Content
Top Forums Web Development Javascript Problems in Opera 10 Post 302351037 by Neo on Monday 7th of September 2009 02:01:29 AM
Old 09-07-2009
Javascript Problems in Opera 10

Ref earlier post:

https://www.unix.com/web-programming-...ooks-nice.html

I have noticed that Google Docs, Speadsheets does not work properly in Opera 10.

Anyone else seen the same thing?
 

5 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

The OPERA browser

I have just seen someone using the OPERA browser - it looks quite good and seems to have a friendly GUI. Can I get this for UNIX(Solaris 8 is my OS)??? Does anyone have this installed on their UNIX workstation?? How is it performing?? All comments and advice is welcome!! (1 Reply)
Discussion started by: Kanu77
1 Replies

2. UNIX for Dummies Questions & Answers

Installing Opera 8 on FreeBSD

I'm a n00b to UNIX, but I'm making much progress. My preferred browser is Opera, and the ported version with FBSD 5.4 is Opera 7.54. Because I lost my opera key, I'd prefer to have version 8 which does not require a key. How can I install the .tar.gz on FreeBSD? I am somewhat familiar with... (2 Replies)
Discussion started by: DrgnInterrupted
2 Replies

3. Solaris

Opera 9.5 for Sparc

Has anyone gotten Opera 9.5 to work? I'm using Solaris Sparc 5.10. The browser is unusable. It crashes even when viewing Opera's Desktop Team blog. I've asked Opera about this, but no reply. I've never been able to get the 9.5 betas to work either. From one Opera user's blog, I don't see any... (0 Replies)
Discussion started by: cooldude
0 Replies

4. Web Development

Opera on the Rise? FF in Decline?

In our poll of browsers, FF3 was the clear winner with Opera a distance second. For me, I am starting to have problems with FF3 taking too much CPU and causing my laptop to overheat, so I recently switched to Opera on my desktop. I already use Opera Mini on my mobile phone. I am starting to... (9 Replies)
Discussion started by: Neo
9 Replies

5. Web Development

Opera 10.0 Released - Looks Nice

FYI, Opera 10 has been released. Opera Web Browser | Faster & safer | Download the new Internet browsers free ---------- Post updated at 21:38 ---------- Previous update was at 10:34 ---------- Wow! I've been running the new Opera 10 all day and it is great! I am impressed! Opera... (0 Replies)
Discussion started by: Neo
0 Replies
Arch::LiteWeb(3pm)					User Contributed Perl Documentation					Arch::LiteWeb(3pm)

NAME
Arch::LiteWeb - simple way to access web pages SYNOPSIS
my $web = Arch::LiteWeb->new; my $content = $web->get("http://some.domain:81/some/path"); die $web->error . " while processing " . $web->request_url unless $content; my $content_type = $web->response_headers->{content_type}; DESCRIPTION
This class provides a basic and easy to use support for the client-side HTTP. It is supplied in order to avoid dependency on LWP. If such dependency is not a problem, consider to use LWP instead that provides much better support for HTTP and other protocols. METHODS
The following class methods are available: get, post, request_url, error, error_with_url, network_error, response_code, response_codestr, response_error, response_headers, response_content. get url [params ...] Execute HTTP get of the given url and return the html string or undef on network/response error. Use other methods to get the details about the error and the response. params is key-value hash, the following keys are supported: url_host - only used if url is none url_port - only used if url is none(80) url_path - only used if url is none endl - default is "1512" timeout - default is 20 seconds user_agent - default is "Arch::LiteWeb/0.1" nocache - add a no-cache header noredirect - don't follow redirect responses max_redirect_depth - default is 5 use_proxy - default is false proxy_url - proxy url ($http_proxy supported too) proxy_host - only used if proxy_url is none proxy_port - only used if proxy_url is none(80) post url input [params] Not implemented yet. request_url Actual url of the last issued request or undef. If partial redirect responses are enabled, then the result is the last (non-redirect) url. error If the last request resulted in error (i.e. get/post returned undef), then this method returns the error message, otherwise it returns undef. This is just a shortcut for network_error || response_error. error_with_url Like error, but with " while fetching request_url " text appended if non undef. network_error The network error message for the last request or undef. response_error The response error message for the last request or undef. response_code The last response code (integer) or undef. response_codestr The last response code (string) or undef. response_headers The last response headers (hashref of HTTP headers) or undef. response_content The last response content or undef. This is the same thing that the last get/post returns. BUGS
Not intended for use in mission-critical applications. AUTHORS
Mikhael Goikhman (migo@homemail.com--Perl-GPL/arch-perl--devel). SEE ALSO
For more information, see LWP, LWP::Simple. perl v5.10.1 2005-03-25 Arch::LiteWeb(3pm)
All times are GMT -4. The time now is 02:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy