示例#1
0
def create_file(path, resource):
    text = open_resourcefile(resource).read()
    f = open(path, 'w')
    f.write(text)
    f.close()
示例#2
0
def create_file(path, resource):
    text = open_resourcefile(resource).read()
    f = open(path, 'w')
    f.write(text)
    f.close()
示例#3
0
# -*- coding: utf-8 -*-
from puddleobjects import PuddleConfig, get_icon
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import sys, pdb, resource,os
from constants import CONFIGDIR, DATADIR
import StringIO
from util import open_resourcefile
from puddlestuff.translations import translate

__version__ = 29

files = [open_resourcefile(filename)
    for filename in [':/caseconversion.action', ':/standard.action']]

SEPARATOR = 'separator'
ALWAYS = 'always'
menu_path = os.path.join(CONFIGDIR, 'menus')
shortcut_path = os.path.join(CONFIGDIR, 'shortcuts')

def create_file(path, resource):
    text = open_resourcefile(resource).read()
    f = open(path, 'w')
    f.write(text)
    f.close()

def check_file(path, resource):
    if not os.path.exists(path):
        create_file(path, resource)
    else:
        cparser = PuddleConfig(path)
示例#4
0
# -*- coding: utf-8 -*-
from puddleobjects import PuddleConfig, get_icon
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import sys, pdb, resource, os
from constants import CONFIGDIR, DATADIR
import StringIO
from util import open_resourcefile
from puddlestuff.translations import translate

__version__ = 29

files = [
    open_resourcefile(filename)
    for filename in [':/caseconversion.action', ':/standard.action']
]

SEPARATOR = 'separator'
ALWAYS = 'always'
menu_path = os.path.join(CONFIGDIR, 'menus')
shortcut_path = os.path.join(CONFIGDIR, 'shortcuts')


def create_file(path, resource):
    text = open_resourcefile(resource).read()
    f = open(path, 'w')
    f.write(text)
    f.close()


def check_file(path, resource):