Skip to content

Commit

Permalink
removed conflictive help files
Browse files Browse the repository at this point in the history
moved imports to classfactory method in __init__.py

git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@266 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
volayaf committed Jun 27, 2012
1 parent d05049f commit 26b892e
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 67 deletions.
5 changes: 2 additions & 3 deletions src/sextante/__init__.py
@@ -1,14 +1,13 @@
from sextante.SextantePlugin import SextantePlugin

def name():
return "SEXTANTE"
def description():
return "SEXTANTE Geoprocessing platform for QGIS"
return "SEXTANTE Geoprocessing Platform for QGIS"
def version():
return "Version 1.0.7"
def icon():
return "icon.png"
def qgisMinimumVersion():
return "1.0"
def classFactory(iface):
from sextante.SextantePlugin import SextantePlugin
return SextantePlugin(iface)
7 changes: 3 additions & 4 deletions src/sextante/core/SextanteLog.py
Expand Up @@ -2,6 +2,7 @@
import os
from sextante.core.SextanteUtils import SextanteUtils
import codecs
from PyQt4 import QtGui
class SextanteLog():

LOG_ERROR = "ERROR"
Expand All @@ -28,10 +29,8 @@ def logFilename():
@staticmethod
def addToLog(msgtype, msg):
if isinstance(msg, list):
text=""
for i in range(0, len(msg)):
text+=msg[i].strip("\n") + "|"
text = unicode(text[:-1])
a = "|".join(m.strip("\n") for m in msg)
text = unicode(a)
else:
text = unicode(msg).replace("\n", "|")
line = msgtype + "|" + datetime.datetime.now().strftime("%a %b %d %Y %H:%M:%S") + "|" + text + "\n"
Expand Down
16 changes: 0 additions & 16 deletions src/sextante/saga/help/04_Directneighbours-more....html

This file was deleted.

This file was deleted.

This file was deleted.

14 changes: 0 additions & 14 deletions src/sextante/saga/help/SelectbyLocation....html

This file was deleted.

0 comments on commit 26b892e

Please sign in to comment.