[go: up one dir, main page]

File: pmwiki.py

package info (click to toggle)
solfege 3.10.3-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 12,408 kB
  • ctags: 4,270
  • sloc: python: 22,161; xml: 7,536; ansic: 4,442; makefile: 685; sh: 308
file content (44 lines) | stat: -rw-r--r-- 1,430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# GNU Solfege - free ear training software
# Copyright (C) 2005, 2007, 2008 Tom Cato Amundsen
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import urllib
import urllib2
import time

class PmWiki:
    def __init__(self, url):
        self.m_url = url
    def write_page(self, pagename, text, author):
        """
        Can raise an urllib2.URLError.
        """
        params = urllib.urlencode({
            'action': 'edit',
            'pagename': pagename,
            'text': text,
            'author': author,
            'basetime': int(time.time()),
            'post': 'Save',
        })
        u = urllib2.urlopen(self.m_url, params)
        return u
    def page_exists(self, pagename):
        u = urllib2.urlopen(self.m_url+'/'+pagename+"?action=source")
        s = u.read()
        u.close()
        return len(s) > 0