|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 # Copyright (c) 2009 Detlev Offenbach <detlev@die-offenbachs.de> |
|
4 # |
|
5 |
|
6 """ |
|
7 Module defining the default bookmarks. |
|
8 """ |
|
9 |
|
10 DefaultBookmarks = """<?xml version="1.0" encoding="UTF-8"?> |
|
11 <!DOCTYPE xbel> |
|
12 <xbel version="1.0"> |
|
13 <folder folded="no"> |
|
14 <title>Bookmarks Bar</title> |
|
15 <bookmark href="http://eric-ide.python-projects.org/"> |
|
16 <title>Eric Web Site</title> |
|
17 </bookmark> |
|
18 <bookmark href="http://www.riverbankcomputing.com/"> |
|
19 <title>PyQt4 Web Site</title> |
|
20 </bookmark> |
|
21 <folder folded="no"> |
|
22 <title>Qt Web Sites</title> |
|
23 <bookmark href="http://qt.nokia.com/"> |
|
24 <title>Qt Web Site</title> |
|
25 </bookmark> |
|
26 <bookmark href="http://qt.nokia.com/doc/"> |
|
27 <title>Qt Documentation</title> |
|
28 </bookmark> |
|
29 <bookmark href="http://qt.nokia.com/doc/qq/"> |
|
30 <title>Qt Quarterly</title> |
|
31 </bookmark> |
|
32 <bookmark href="http://labs.trolltech.com/"> |
|
33 <title>Qt Labs</title> |
|
34 </bookmark> |
|
35 <bookmark href="http://qtcentre.org/"> |
|
36 <title>Qt Centre</title> |
|
37 </bookmark> |
|
38 <bookmark href="http://qt-apps.org/"> |
|
39 <title>Qt-Apps.org</title> |
|
40 </bookmark> |
|
41 </folder> |
|
42 <folder folded="no"> |
|
43 <title>Python Web Sites</title> |
|
44 <bookmark href="http://www.python.org/"> |
|
45 <title>Python Language Website</title> |
|
46 </bookmark> |
|
47 <bookmark href="http://pypi.python.org/pypi"> |
|
48 <title>Python Package Index: PyPI</title> |
|
49 </bookmark> |
|
50 </folder> |
|
51 </folder> |
|
52 <folder folded="yes"> |
|
53 <title>Bookmarks Menu</title> |
|
54 <bookmark href="http://eric-ide.python-projects.org/"> |
|
55 <title>Eric Web Site</title> |
|
56 </bookmark> |
|
57 <bookmark href="http://www.riverbankcomputing.com/"> |
|
58 <title>PyQt4 Web Site</title> |
|
59 </bookmark> |
|
60 </folder> |
|
61 </xbel>""" |