Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Issue #17536: Add to webbrowser's browser list: xdg-open, gvfs-open, | doko@ubuntu.com | 2013-04-13 | 1 | -0/+31 |
| | | | | www-browser, x-www-browser, chromium browsers, iceweasel, iceape. | ||||
* | #12601: fix typo. | Ezio Melotti | 2011-07-21 | 1 | -1/+1 |
| | |||||
* | Issue 10738: Fix webbrowser.Opera.raise_opts value. | Terry Reedy | 2010-12-28 | 1 | -5/+1 |
| | |||||
* | Fix for issue8446: | Ronald Oussoren | 2010-06-22 | 1 | -12/+0 |
| | | | | | | | | | | * Don't import 'ic' in webbrowser, that module is no longer used * Remove 'MacOS' from the list of modules that should emit a Py3kWarning on import. This is needed because one of the earlier tests triggers and import of this extension, and that causes a failure in test_py3kwarn (running test_py3kwarn separately worked fine) With these changes 'make tests' no longer says that test_py3kwarn fails. | ||||
* | Small update to r80698 to ensure that webbrowser.open | Ronald Oussoren | 2010-05-02 | 1 | -1/+1 |
| | | | | uses the default browser. | ||||
* | For for issue #7192: with this patch webbrowser.get("firefox") | Ronald Oussoren | 2010-05-02 | 1 | -1/+27 |
| | | | | works on OSX | ||||
* | Issue #7092: Fix the DeprecationWarnings emitted by the standard library | Antoine Pitrou | 2010-01-04 | 1 | -1/+1 |
| | | | | when using the -3 flag. Patch by Florent Xicluna. | ||||
* | Issue #2666: Handle BROWSER environment variable properly for unknown ↵ | Georg Brandl | 2009-09-04 | 1 | -1/+3 |
| | | | | browser names in the webbrowser module. | ||||
* | use bools for autoraise | Benjamin Peterson | 2009-07-23 | 1 | -11/+11 |
| | |||||
* | Fix a few webbrowser.py problems. | Georg Brandl | 2007-07-01 | 1 | -0/+2 |
| | |||||
* | Fix #1684254: split BROWSER contents with shlex to avoid displaying 'URL'. | Georg Brandl | 2007-03-21 | 1 | -1/+6 |
| | |||||
* | Bug #1681228: the webbrowser module now correctly uses the default | Georg Brandl | 2007-03-16 | 1 | -18/+26 |
| | | | | | | | GNOME or KDE browser, depending on whether there is a session of one of those present. Also, it tries the Windows default browser before trying Mozilla variants. (backport) | ||||
* | Bug #1565661: in webbrowser, split() the command for the default | Georg Brandl | 2006-09-30 | 1 | -1/+1 |
| | | | | GNOME browser in case it is a command with args. | ||||
* | Fix webbrowser.BackgroundBrowser on Windows. | Georg Brandl | 2006-09-24 | 1 | -5/+11 |
| | |||||
* | webbrowser: Silence stderr output if no gconftool or gnome browser found | Georg Brandl | 2006-08-08 | 1 | -2/+2 |
| | |||||
* | Make use of new str.startswith/endswith semantics. | Georg Brandl | 2006-06-09 | 1 | -2/+1 |
| | | | | Occurences in email and compiler were ignored due to backwards compat requirements. | ||||
* | Add seamonkey to list of Windows browsers too. | Georg Brandl | 2006-05-03 | 1 | -1/+2 |
| | |||||
* | Add SeaMonkey to the list of Mozilla browsers. | Georg Brandl | 2006-04-28 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2006-01-20 | 1 | -11/+11 |
| | |||||
* | Try to resolve the remaining webbrowser issues (backgrounding, local urls) | Georg Brandl | 2006-01-20 | 1 | -103/+196 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2005-12-25 | 1 | -2/+2 |
| | |||||
* | Prefer GNOME browser over mozilla. | Georg Brandl | 2005-11-22 | 1 | -7/+7 |
| | |||||
* | Bug #1338995: fix problem with new webbrowser.py. | Georg Brandl | 2005-11-09 | 1 | -4/+9 |
| | |||||
* | Fix errors in _synthesize because of missing basename attribute of | Georg Brandl | 2005-10-08 | 1 | -2/+6 |
| | | | | browser controller classes. | ||||
* | Fix pychecker warnings | Neal Norwitz | 2005-10-04 | 1 | -4/+9 |
| | |||||
* | Patch #754022: Greatly enhanced webbrowser.py. | Georg Brandl | 2005-10-03 | 1 | -175/+338 |
| | |||||
* | [Patch #981794] Add support for Firefox/Firebird | Andrew M. Kuchling | 2004-07-10 | 1 | -5/+6 |
| | |||||
* | Replace str.find()!=1 with the more readable "in" operator. | Raymond Hettinger | 2004-05-04 | 1 | -1/+1 |
| | |||||
* | Fixed bug | Gustavo Niemeyer | 2002-11-25 | 1 | -2/+9 |
| | | | | | | | | | | | [#495695] webbrowser.py: selection of browser * Lib/webbrowser.py Only include graphic browsers in _tryorder if DISPLAY is set. Also, included skipstone support, as suggested by Fred in the mentioned bug. * Misc/NEWS Mention fix and skipstone inclusion. | ||||
* | SF # 539360, webbrowser.py and konqueror, by Andy McKay | Neal Norwitz | 2002-10-11 | 1 | -2/+2 |
| | | | | | | | Fix Konqueror so it can start when calling open(). The assert needed to be on the raw URL, not openURL 'url...' Will backport. | ||||
* | SF # 585913, Adds Galeon support to webbrowser.py | Neal Norwitz | 2002-10-10 | 1 | -1/+33 |
| | |||||
* | Replaced boolean tests with is None. | Raymond Hettinger | 2002-06-02 | 1 | -1/+1 |
| | |||||
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -3/+3 |
| | |||||
* | Convert a pile of obvious "yes/no" functions to return bool. | Tim Peters | 2002-04-04 | 1 | -4/+4 |
| | |||||
* | If no webbrowsers were found _tryorder would be empty, cmd would never be ↵ | Jack Jansen | 2002-03-15 | 1 | -0/+1 |
| | | | | | | set and the "del cmd" would fail. Fixed. 2.2.1 candidate. | ||||
* | SF #515026, delete global variable that was apparently used only | Neal Norwitz | 2002-02-11 | 1 | -0/+1 |
| | | | | in a for loop. | ||||
* | Fix webbrowser.py security bug: be more careful about what we pass to | Fred Drake | 2002-01-07 | 1 | -12/+15 |
| | | | | | os.system(). This closes Python bug #500401, Debian bug #127507. | ||||
* | Address SF patch #485789 (Stefan Schwarzer). | Guido van Rossum | 2001-12-04 | 1 | -1/+1 |
| | | | | $BROWSER should be split on os.pathsep, not on ":". | ||||
* | _tryorder should always be a list, then the problem Jack had to fix in | Guido van Rossum | 2001-12-03 | 1 | -5/+4 |
| | | | | | | 1.24 wouldn't have occurred in the first place. Remove a debug print command accidentally inserted by Martin in 1.23. | ||||
* | Missing comma in tuple initializer caused webbrowser.open() not to work at | Jack Jansen | 2001-12-03 | 1 | -1/+1 |
| | | | | all in MacPython. (why did noone ever notice this?) | ||||
* | Patch #484847: Default to netscape.exe on OS/2. | Martin v. Löwis | 2001-11-25 | 1 | -0/+10 |
| | |||||
* | _os should be os; reported by Neal Norwitz. | Fred Drake | 2001-10-13 | 1 | -1/+1 |
| | |||||
* | Fix malformed line (PyChecker) | Andrew M. Kuchling | 2001-08-13 | 1 | -1/+1 |
| | |||||
* | Remove some false comments. | Fred Drake | 2001-07-19 | 1 | -159/+156 |
| | | | | | | Reorganize so the initialization sequences does not bite us in the foot. (There is no good reason to discard classes that clients may want to subclass.) | ||||
* | If the user's environment has set the BROWSER environment variable (as Gnome | Skip Montanaro | 2001-07-18 | 1 | -6/+9 |
| | | | | | | | seems to do), the user may not be aware of its contents. Attempt to add any to _browsers. closes bug #429136 | ||||
* | _synthesize(): Helper function: when the users passes a specific | Fred Drake | 2001-04-12 | 1 | -7/+50 |
| | | | | | | | | | | | | | | | | value for the 'using' parameter of the get() function or the BROWSER environment variable, if the thing passed in is a path (as seems to be the case with KDE) instead of a short name, examine the available controllers to see if we can synthesize one based on a pre-registered controller that shares the same base name. get(): If the user specifies a browser we don't know about, use _synthesize() to attempt to create a usable controller. Some small adjustments were needed in some of the browser classes to support this. | ||||
* | Fixes a fatal bug when the module has computed alternatives containing %s. | Eric S. Raymond | 2001-03-31 | 1 | -1/+1 |
| | |||||
* | Update auto-detection for Konqueror to include KDE 2 -- the kfm command is | Fred Drake | 2001-03-26 | 1 | -2/+5 |
| | | | | | gone; "konqueror" is the new name, and the command-line args are different. kfmclient has not changed, though. | ||||
* | Clarify synopsis line a bit. | Ka-Ping Yee | 2001-03-02 | 1 | -3/+3 |
| | | | | Remove -no-about-splash option (not understood by all Netscapes). | ||||
* | final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be | Skip Montanaro | 2001-03-01 | 1 | -0/+2 |
| | | | | giving it a slight facelift |