This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(dbgui)~/dev/dbgui/src/rex.dbgui [default]$ pbbt --train | |
======================================================================== | |
REX.DB [/rex.db] | |
("test/input.yaml", line 5) | |
------------------------------------------------------------------------ | |
RMDIR: ./build/coverage | |
("test/input.yaml", line 8) | |
------------------------------------------------------------------------ | |
MKDIR: ./build/coverage | |
("test/input.yaml", line 9) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
COVERAGE-CHECK: 98.0 | |
("test/input.yaml", line 20) | |
Name Stmts Miss Branch BrPart Cover | |
-------------------------------------------------------------- | |
src/rex/dbgui/__init__.py 3 0 0 0 100% | |
src/rex/dbgui/action.py 27 0 4 1 97% | |
src/rex/dbgui/formfield.py 9 0 0 0 100% | |
src/rex/dbgui/widget.py 19 0 2 0 100% | |
src/rex/dbgui/wizard.py 224 2 80 2 99% | |
-------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# RexStudy RIOS Forms Tables | |
- include: deploy/form/measure_type.yaml | |
- include: deploy/form/measure_type_revision.yaml | |
- include: deploy/form/acquire_channel.yaml | |
- include: deploy/form/measure_type_revision_channel.yaml | |
- include: deploy/form/measure_type_revision_draft.yaml | |
- include: deploy/form/measure_type_revision_chl_draft.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Operational MODE: single process *** | |
webpack:rex-study-demo compilation started | |
Traceback (most recent call last): | |
File "/var/folders/7f/ybb1wxqj24b5jns18k1gfsyw0000gn/T/rex.study_demo-tnwIhl.wsgi", | |
line 16, in <module> | |
application = Rex(*requirements, **parameters) | |
File "/Users/zindel/dev/study/src/rex.core/src/rex/core/application.py", line 35, i | |
n __init__ | |
self.initialize() | |
File "/Users/zindel/dev/study/src/rex.core/src/rex/core/application.py", line 45, i |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use-existing-sample: | |
title: "Use Existing Sample" | |
type: use-existing-sample | |
entity: todo[sample-not-started && sample-has-candidates] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from docutils import nodes | |
from docutils.parsers.rst import Directive | |
from .application import LatentRex | |
from .package import get_packages | |
def setup(app): | |
app.add_directive('rex-extension', ExtensionDoc) | |
def get_extension_class(name): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/topNav/PrimaryMenu.js b/src/topNav/PrimaryMenu.js | |
index 57efdfd..0229aa9 100644 | |
--- a/src/topNav/PrimaryMenu.js | |
+++ b/src/topNav/PrimaryMenu.js | |
@@ -61,6 +61,7 @@ export class PrimaryMenu extends React.Component { | |
render() { | |
let { | |
children, | |
+ href, | |
items, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exception occurred: | |
File "/Users/zindel/dev/doc/lib/python2.7/site-packages/yaml/constructor.py", line 4 | |
14, in construct_undefined | |
node.start_mark) | |
ConstructorError: could not determine a constructor for the tag '!include' | |
in "/Users/zindel/dev/doc/share/rex/rex.study/resource/common/visit.yaml", line 53, | |
column 17 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(study417)~/dev/study417 $ rex shell rex.db -E tweak.meta --set=db=pgsql:study417 | |
Type 'help' for more information, 'exit' to quit the shell. | |
study417$ /meta(exists(column?table='participant_group'&name='title')) | |
| exists(column?table='participant_group'&name='title') | | |
-+-------------------------------------------------------+- | |
| false | | |
study417$ | |
(study417)~/dev/study417 $ workon study | |
(study)~/dev/study $ rex shell rex.db -E tweak.meta --set=db=pgsql:study |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/static/js/lib/form/FileUploadField.js Thu Sep 22 23:16:10 2016 +0300 | |
+++ b/static/js/lib/form/FileUploadField.js Wed Oct 26 12:46:15 2016 +0200 | |
@@ -5,7 +5,7 @@ | |
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import {VBox, HBox} from '../../layout'; | |
-import {Button} from '../../ui'; | |
+import {Button, Icon} from '../../ui'; | |
import File from './File'; | |
import StoredFile from './StoredFile'; |