Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
José Chávez
- Thu, 24 Aug 2017 21:55:14
Show More
0
.vscode/c_cpp_properties.json
.vscode/c_cpp_properties.json
created
644
+69
0
@@
-0,0
+1,69
1
{
2
"configurations" : [
3
{
4
"name" : "Mac" ,
5
"includePath" : [
6
"/usr/include" ,
7
"/usr/local/include" ,
8
"${workspaceRoot}"
9
],
10
"defines" : [],
11
"intelliSenseMode" : "clang-x64" ,
12
"browse" : {
13
"path" : [
14
"/usr/include" ,
15
"/usr/local/include" ,
16
"${workspaceRoot}"
17
],
18
"limitSymbolsToIncludedHeaders" : true ,
19
"databaseFilename" : ""
20
}
21
},
22
{
23
"name" : "Linux" ,
24
"includePath" : [
25
"/usr/include/c++/4.8.4" ,
26
"/usr/include/x86_64-linux-gnu/c++/4.8" ,
27
"/usr/local/include" ,
28
"/usr/include" ,
29
"/usr/include/x86_64-linux-gnu" ,
30
"${workspaceRoot}"
31
],
32
"defines" : [],
33
"intelliSenseMode" : "clang-x64" ,
34
"browse" : {
35
"path" : [
36
"/usr/include/c++/4.8.4" ,
37
"/usr/include/x86_64-linux-gnu/c++/4.8" ,
38
"/usr/local/include" ,
39
"/usr/include" ,
40
"/usr/include/x86_64-linux-gnu" ,
41
"${workspaceRoot}"
42
],
43
"limitSymbolsToIncludedHeaders" : true ,
44
"databaseFilename" : ""
45
}
46
},
47
{
48
"name" : "Win32" ,
49
"includePath" : [
50
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include" ,
51
"${workspaceRoot}"
52
],
53
"defines" : [
54
"_DEBUG" ,
55
"UNICODE"
56
],
57
"intelliSenseMode" : "msvc-x64" ,
58
"browse" : {
59
"path" : [
60
"C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC/include/*" ,
61
"${workspaceRoot}"
62
],
63
"limitSymbolsToIncludedHeaders" : true ,
64
"databaseFilename" : ""
65
}
66
}
67
],
68
"version" : 2
69
}
No newline at end of file
0
.vscode/settings.json
.vscode/settings.json
created
644
+7
0
@@
-0,0
+1,7
1
{
2
"files.associations" : {
3
"arrayobject.h" : "c" ,
4
"ndarrayobject.h" : "c" ,
5
"complex" : "c"
6
}
7
}
No newline at end of file
0
.gitignore
.gitignore
+101
-6
@@
-1,13
+1,108
1
.project
2
.pydevproject
3
build/
4
*.pyc
1
# Byte-compiled / optimized / DLL files
2
__pycache__/
3
*.py[cod]
4
*$py.class
5
6
# C extensions
5
7
*.so
8
9
# Distribution / packaging
10
.Python
11
env/
12
build/
13
develop-eggs/
14
dist/
15
downloads/
16
eggs/
17
.eggs/
18
lib/
19
lib64/
20
parts/
21
sdist/
22
var/
23
wheels/
6
24
*.egg-info/
25
.installed.cfg
26
*.egg
27
28
# PyInstaller
29
# Usually these files are written by a python script from a template
30
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31
*.manifest
32
*.spec
33
34
# Installer logs
35
pip-log.txt
36
pip-delete-this-directory.txt
37
38
# Unit test / coverage reports
39
htmlcov/
40
.tox/
41
.coverage
42
.coverage.*
43
.cache
44
nosetests.xml
45
coverage.xml
46
*,cover
47
.hypothesis/
48
49
# Translations
50
*.mo
51
*.pot
52
53
# Django stuff:
54
*.log
55
local_settings.py
56
57
# Flask stuff:
58
instance/
59
.webassets-cache
60
61
# Scrapy stuff:
62
.scrapy
63
64
# Sphinx documentation
65
docs/_build/
66
67
# PyBuilder
68
target/
69
70
# Jupyter Notebook
71
.ipynb_checkpoints
72
73
# pyenv
74
.python-version
75
76
# celery beat schedule file
77
celerybeat-schedule
78
79
# SageMath parsed files
80
*.sage.py
81
82
# dotenv
83
.env
84
85
# virtualenv
86
.venv
87
venv/
88
ENV/
89
90
# Spyder project settings
91
.spyderproject
92
.spyproject
93
94
# Rope project settings
95
.ropeproject
96
97
# mkdocs documentation
98
/site
7
99
8
100
# eclipse
9
101
.project
10
102
.pydevproject
103
.svn/
104
*.png
105
*.pyc
106
schainpy/scripts
11
107
12
# vscode
13
.vscode
No newline at end of file
108
schaingui/node_modules
No newline at end of file
0
schainpy/controller.py
schainpy/controller.py
0
0
1
NO CONTENT: modified file
0
schainpy/controller_api.py
schainpy/controller_api.py
+1
-1
@@
-90,7
+90,7
class ControllerThread(threading.Thread, Project):
90
90
continue
91
91
92
92
if thisOpObj . name in plotterList :
93
thisOpObj . type = "plotter"
93
thisOpObj . type = "oth er"
94
94
95
95
def setPlotterQueue ( self , plotter_queue ):
96
96
0
schainpy/model/utils/jroutils_ftp.py
schainpy/model/utils/jroutils_ftp.py
+6
-2
@@
-584,6
+584,8
class SendToServer(ProcessingUnit):
584
584
self . isConfig = False
585
585
self . clientObj = None
586
586
587
588
587
589
def setup ( self , server , username , password , remotefolder , localfolder , ext = '.png' , period = 60 , protocol = 'ftp' , ** kwargs ):
588
590
589
591
self . clientObj = None
@@
-638,18
+640,20
class SendToServer(ProcessingUnit):
638
640
return fullfilenameList
639
641
640
642
def run ( self , ** kwargs ):
641
642
643
if not self . isConfig :
643
644
self . init = time . time ()
644
645
self . setup ( ** kwargs )
645
646
self . isConfig = True
646
647
648
if not self . clientObj . is_alive ():
649
print "[Remote Server]: Restarting connection "
650
self . setup ( ** kwargs )
651
647
652
if time . time () - self . init >= self . period :
648
653
fullfilenameList = self . findFiles ()
649
654
650
655
if self . clientObj . updateFileList ( fullfilenameList ):
651
656
print "[Remote Server]: Sending the next files " , str ( fullfilenameList )
652
653
657
self . init = time . time ()
654
658
655
659
def close ( self ):
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages