use full module path to not collide with other software, thanks to samuel

This commit is contained in:
chrys 2018-02-22 20:24:10 +01:00
parent 3469c963ca
commit e03a7183e4
198 changed files with 298 additions and 298 deletions

View File

@ -1517,7 +1517,7 @@ Commands are python files with a special scheme. You can assign them to a shortc
Good Examples: ["date.py"](https///github.com/chrys87/fenrir/blob/master/src/fenrir/commands/commands/date.py) (announce the Date), ["shut_up.py"](https///github.com/chrys87/fenrir/blob/master/src/fenrir/commands/commands/shut_up.py) (interrupt output)
the basic scheme for a command is as follows:
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -1273,7 +1273,7 @@ Commands are python files with a special scheme. You can assign them to a shortc
Good Examples: [[https://github.com/chrys87/fenrir/blob/master/src/fenrir/commands/commands/date.py|"date.py"]] (announce the Date), [[https://github.com/chrys87/fenrir/blob/master/src/fenrir/commands/commands/shut_up.py|"shut_up.py"]] (interrupt output)
the basic scheme for a command is as follows:
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -78,8 +78,8 @@ setup(
author_email="chrysg@linux-a11y.org",
# Packages
packages=find_packages('src/fenrir'),
package_dir={'': 'src/fenrir'},
packages=find_packages('src'),
package_dir={'': 'src'},
scripts=['src/fenrir/fenrir','src/fenrir/fenrir-daemon'],
# Include additional files into the package

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class driver():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class driver():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import word_utils
from fenrir.core import debug
from fenrir.utils import word_utils
import string
initialized = False
try:

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import screen_utils
from fenrir.core import debug
from fenrir.utils import screen_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import datetime
class command():

View File

@ -11,7 +11,7 @@ try:
except:
pass
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import math
class command():

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import math
class command():

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import math
class command():

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import math
class command():

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import os
class command():

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import subprocess, os
from subprocess import Popen, PIPE
import _thread

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
import os
class command():

View File

@ -11,7 +11,7 @@ try:
except:
pass
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import math
class command():

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import math
class command():

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import math
class command():

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import math
class command():

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import mark_utils
from fenrir.core import debug
from fenrir.utils import mark_utils
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
import time
class command():

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import word_utils
from fenrir.core import debug
from fenrir.utils import word_utils
import string
initialized = False
try:

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import word_utils
from fenrir.core import debug
from fenrir.utils import word_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import word_utils
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import word_utils
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import line_utils
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import line_utils
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import word_utils
from fenrir.core import debug
from fenrir.utils import word_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import word_utils
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import word_utils
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import line_utils
from fenrir.core import debug
from fenrir.utils import line_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import word_utils
from fenrir.core import debug
from fenrir.utils import word_utils
class command():
def __init__(self):

View File

@ -4,9 +4,9 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import word_utils
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import word_utils
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,8 +4,8 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from utils import char_utils
from fenrir.core import debug
from fenrir.utils import char_utils
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

View File

@ -4,7 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers.
from core import debug
from fenrir.core import debug
class command():
def __init__(self):

Some files were not shown because too many files have changed in this diff Show More