本文整理汇总了Python中pyasm.widget.TableWdg.set_sobjects方法的典型用法代码示例。如果您正苦于以下问题:Python TableWdg.set_sobjects方法的具体用法?Python TableWdg.set_sobjects怎么用?Python TableWdg.set_sobjects使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyasm.widget.TableWdg
的用法示例。
在下文中一共展示了TableWdg.set_sobjects方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_display
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def get_display(my):
args = WebContainer.get_web().get_form_args()
# get the args in the URL
search_type = args['search_type']
search_id = args['search_id']
sobject = Search.get_by_search_key("%s|%s" % (search_type,search_id) )
search = Search("prod/sequence_instance")
search.add_filter(sobject.get_foreign_key(), sobject.get_code())
all_instances = search.get_sobjects()
widget = DivWdg()
widget.add_style("width: 95%")
widget.add_style("margin-left: 20px")
table = TableWdg("prod/sequence_instance", "layout", css="minimal")
table.set_show_property(False)
table.set_show_header(False)
table.set_sobjects(all_instances)
table.set_search(search)
widget.add(table)
aux_data = SequenceInstance.get_aux_data(all_instances)
table.set_aux_data(aux_data)
return widget
示例2: get_left_wdg
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def get_left_wdg(my, view="layout_left"):
search_type = my.get_left_search_type()
search = Search(search_type)
# filter by project
#project_code = Project.get_project_code()
#search.add_filter("project_code", project_code )
# use a holding place for these "special"
#parent_search_type = my.get_right_search_type()
#search.add_filter("search_type", "%s?project=%s" % \
# (parent_search_type, project_code) )
search.add_filter("s_status", "__TEMPLATE__")
left_div = DivWdg()
left_div.add_style("margin: 10px")
left_div.add(HtmlElement.h3("Template Task") )
asset_filter = my.get_left_filter(search)
filter_box = DivWdg(asset_filter, css='filter_box')
left_div.add(filter_box)
asset_filter.alter_search(search)
assets_table = TableWdg(search_type, view)
assets_table.set_sobjects(search.get_sobjects(), search)
left_div.add(assets_table)
return left_div
示例3: _get_sobject_history_wdg
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def _get_sobject_history_wdg(my):
''' this method is called thru ajax '''
args = WebContainer.get_web().get_form_args()
# get the args in the URL
search_type = args['search_type']
search_id = args['search_id']
#sobject = Search.get_by_id(search_type, search_id)
div = Widget()
search = Search("sthpw/sobject_log")
search.add_filter("search_type", search_type)
search.add_filter("search_id", search_id)
sobjects = search.get_sobjects()
search = Search("sthpw/transaction_log")
search.add_filters("id", [x.get_value("transaction_log_id") for x in sobjects] )
sobjects = search.get_sobjects()
table = TableWdg("sthpw/transaction_log", "table", css='table')
table.set_show_property(False)
table.set_sobjects(sobjects)
div.add(table)
div.add(HtmlElement.br(2))
return div
div.add(assigned_shot_wdg)
div.add(HtmlElement.br(2))
return div
示例4: get_naming_wdg
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def get_naming_wdg(my):
widget = Widget()
table = TableWdg("prod/naming")
search = Search("prod/naming")
sobjects = search.get_sobjects()
table.set_sobjects(sobjects)
widget.add(table)
return widget
示例5: get_naming_wdg
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def get_naming_wdg(self):
widget = Widget()
#div = DivWdg(css="filter_box")
#widget.add(div)
table = TableWdg("prod/naming")
search = Search("prod/naming")
sobjects = search.get_sobjects()
table.set_sobjects(sobjects)
widget.add(table)
return widget
示例6: get_render_policy_wdg
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def get_render_policy_wdg(my):
widget = Widget()
#div = DivWdg(css="filter_box")
#widget.add(div)
table = TableWdg("prod/render_policy")
search = Search("prod/render_policy")
sobjects = search.get_sobjects()
table.set_sobjects(sobjects)
widget.add(table)
return widget
示例7: get_display
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def get_display(self):
if not self.is_refresh:
widget = DivWdg()
self.set_as_panel(widget)
else:
widget = Widget()
sobject = Search.get_by_id(self.search_type, self.search_id)
if sobject:
search_type = sobject.get_base_search_type()
else:
widget.add('sobject not found with [%s,%s]' %(self.search_type, self.search_id))
return widget
# the filter for searching assets
div = DivWdg(css="filter_box")
filter = ProcessSelectWdg(label = 'Process: ', search_type=search_type,\
css='med', has_empty=True)
filter.set_persistence()
filter.add_behavior({'type' : 'change',
'cbjs_action': '%s;%s'%(filter.get_save_script(), filter.get_refresh_script())
})
div.add(filter)
# note assuming process == context here
contexts = filter.get_values()
if contexts:
contexts = contexts[0].split(",")
else:
contexts = None
widget.add(div)
snap_table = TableWdg(Snapshot.SEARCH_TYPE, "publish_browser")
widget.add(snap_table)
# add the search
search = Search(Snapshot.SEARCH_TYPE)
search.add_order_by("version desc")
search.add_sobject_filter(sobject)
if contexts:
search.add_filters("context", contexts)
snap_table.set_sobjects(search.get_sobjects())
snap_table.set_search(search)
return widget
示例8: get_display
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def get_display(my):
widget = Widget()
# added a change password widget to the preferences tab.
# This should be moved into the table eventually
div = DivWdg()
#div.add(ChangePasswordLinkWdg())
div.set_style("font-size: 14px; padding-left: 10px; margin-top: 10px" )
widget.add(div)
search = Search("sthpw/pref_list")
sobjects = search.get_sobjects()
table = TableWdg("sthpw/pref_list", "user")
table.set_sobjects(sobjects)
widget.add(table)
return widget
示例9: _get_sobject_wdg
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def _get_sobject_wdg(my):
''' this method is called thru ajax '''
args = WebContainer.get_web().get_form_args()
# get the args in the URL
search_type = args['search_type']
sobj_search_type = args['sobj_search_type']
search_id = args['search_id']
view = args['view']
sobject = Search.get_by_id(sobj_search_type, search_id)
content = Widget()
table = TableWdg(search_type, view, css='table')
table.set_show_property(False)
content.add(table)
content.add(HtmlElement.br(2))
search = my._get_sobject_search(sobject, search_type)
sobjects = search.get_sobjects()
if search_type.startswith("sthpw/note"):
# this assumes that a project has submission!
from pyasm.prod.biz import Submission
from pyasm.search import SqlException
try:
notes = Submission.get_all_notes(sobject)
sobjects.extend( notes )
except SqlException:
pass
def compare(x,y):
return cmp( y.get_value("timestamp"), x.get_value("timestamp") )
sobjects.sort(cmp=compare)
table.set_search(search)
table.set_sobjects(sobjects)
return content
示例10: get_display
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def get_display(my):
web = WebContainer.get_web()
search_key = web.get_form_value("search_key")
widget = Widget()
sobject = Search.get_by_search_key(search_key)
table = TableWdg( sobject.get_search_type(), "render" )
table.set_sobject(sobject)
widget.add(table)
# get all of the snapshots with a context render
sobject_snapshot = Snapshot.get_latest_by_sobject(sobject,"render")
if sobject_snapshot:
search_type = sobject.get_search_type()
search_id = sobject.get_value('search_id')
render_snapshots = Snapshot.get_by_search_type(search_type,search_id,"render")
table = TableWdg("sthpw/snapshot")
table.set_sobjects(render_snapshots)
widget.add(table)
widget.add(HtmlElement.h3("Rendered Frames"))
if sobject_snapshot:
widget.add("Render version: v%0.3d" % sobject_snapshot.get_value("version") )
# get latest snapshot of the render
renders = Render.get_all_by_sobject(sobject)
if not renders:
widget.add("<h4>No renders found</h4>")
return widget
render = renders[0]
snapshot = Snapshot.get_latest_by_sobject(render,"render")
if snapshot == None:
widget.add("<h4>No snapshots found</h4>")
return widget
# get the images
web_dir = snapshot.get_web_dir()
lib_dir = snapshot.get_lib_dir()
xml = snapshot.get_xml_value("snapshot")
file_nodes = xml.get_nodes("snapshot/file")
file_name = icon_file_name = ''
frame_range = icon_frame_range = None
for file_node in file_nodes:
if Xml.get_attribute(file_node, 'type') == 'main':
file_name, frame_range = my._get_frame_info(file_node, sobject)
if Xml.get_attribute(file_node, 'type') == 'icon':
icon_file_name, icon_frame_range = my._get_frame_info(file_node, sobject)
file_names = [file_name]
icon_file_names = [icon_file_name]
if "##" in file_name:
file_names = FileGroup.expand_paths(file_name, frame_range)
if "##" in icon_file_name:
icon_file_names = FileGroup.expand_paths(icon_file_name, \
icon_frame_range)
div = DivWdg()
for k in range(len(file_names)):
file_name = file_names[k]
# ignore frames that don't exist
lib_path = "%s/%s" % (lib_dir, file_name)
if not os.path.exists(lib_path):
continue
try:
icon_file_name = icon_file_names[k]
except IndexError:
icon_file_name = file_names[k]
file_path = "%s/%s" % (web_dir, file_name)
icon_file_path = "%s/%s" % (web_dir, icon_file_name)
img = HtmlElement.img(icon_file_path)
img.set_attr("width", "60")
img.add_event("onmouseover","hint_bubble.show(event,'Ctrl + Click to open in new window')")
href = HtmlElement.href(img, file_path)
div.add(href)
widget.add(div)
widget.add( "<h3>Render History</h3>" )
widget.add( my.get_render_history(renders) )
return widget
示例11: get_render_history
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def get_render_history(my, renders):
table = TableWdg("prod/render", "history")
table.set_sobjects( renders )
return table
示例12: init
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def init(my):
search = Search("sthpw/queue")
search.add_order_by("priority desc")
search.add_order_by("timestamp desc")
widget = Widget()
div = DivWdg(css="filter_box")
span = SpanWdg(css="med")
from pyasm.prod.web import SearchFilterWdg
search_filter = SearchFilterWdg(columns=Queue.get_search_columns())
search_filter.alter_search(search)
span.add(search_filter)
div.add(span)
span = SpanWdg(css="med")
priority_wdg = TextWdg("priority_search")
priority_wdg.set_persistence()
priority = priority_wdg.get_value()
if priority:
search.add_filter("priority", priority)
span.add("Priority: ")
span.add(priority_wdg)
div.add(span)
select = SelectWdg("queue_state")
select.set_option("values", "|pending|locked|error|done")
select.set_option("labels", "All|pending|locked|error|done")
select.add_event("onchange", "document.form.submit()")
select.set_persistence()
span = SpanWdg(css="med")
span.add("State: ")
span.add(select)
div.add(span)
queue_state = select.get_value()
if queue_state != "":
search.add_filter("state", queue_state)
user_select = SelectWdg("user_select")
user_select.add_empty_option()
user_search = Search("sthpw/login")
user_select.set_search_for_options(user_search, "login", "login")
user_select.add_event("onchange", "document.form.submit()")
user_select.set_persistence()
div.add("User: ")
div.add(user_select)
queue_user = user_select.get_value()
if queue_user != "":
search.add_filter("login", queue_user)
search_limit = SearchLimitWdg()
search_limit.set_limit(10)
div.add(search_limit)
search_limit.alter_search(search)
widget.add(div)
sobjects = search.get_sobjects()
table = TableWdg("sthpw/queue")
table.set_sobjects(sobjects)
widget.add(table)
my.add(widget)
示例13: init
# 需要导入模块: from pyasm.widget import TableWdg [as 别名]
# 或者: from pyasm.widget.TableWdg import set_sobjects [as 别名]
def init(my):
# get the args in the URL
args = WebContainer.get_web().get_form_args()
search_type = args['search_type']
search_id = args['search_id']
sobject = Search.get_by_id(search_type, search_id)
main_div = DivWdg()
main_div.add_style("width: 95%")
main_div.add_style("float: right")
my.add(main_div)
if isinstance(sobject, Shot):
content_id ='summary_story_%s' %sobject.get_id()
title_id = 'story_head_%s' %sobject.get_id()
story_div = DivWdg(id=content_id)
story_div.add_style('display','block')
story_head = HtmlElement.h3("Storyboard")
my.add_title_style(story_head, title_id, content_id)
main_div.add(story_head)
main_div.add(story_div)
storyboard_table = TableWdg("prod/storyboard", "summary", css='minimal')
search = Search("prod/storyboard")
search.add_filter( sobject.get_foreign_key(), sobject.get_code() )
sobjects = search.get_sobjects()
storyboard_table.set_sobjects(sobjects)
story_div.add(storyboard_table)
# add reference material
search = Search("sthpw/connection")
search.add_filter("src_search_type", search_type)
search.add_filter("src_search_id", search_id)
connections = search.get_sobjects()
if connections:
content_id ='summary_ref_%s' %sobject.get_id()
title_id = 'ref_head_%s' %sobject.get_id()
ref_head = HtmlElement.h3("Reference")
my.add_title_style(ref_head, title_id, content_id)
ref_div = DivWdg(id = content_id)
ref_div.add_style('display','block')
for connection in connections:
thumb = ThumbWdg()
thumb.set_name("snapshot")
dst_search_type = connection.get_value("dst_search_type")
dst_search_id = connection.get_value("dst_search_id")
dst = Search.get_by_id(dst_search_type, dst_search_id)
thumb.set_sobject(dst)
ref_div.add(thumb)
main_div.add(ref_head)
main_div.add(ref_div)
task_head = HtmlElement.h3("Tasks")
content_id ='summary_task_%s' %sobject.get_id()
title_id = 'task_head_%s' %sobject.get_id()
my.add_title_style(task_head, title_id, content_id)
main_div.add(task_head)
task_div = DivWdg(id=content_id)
task_div.add_style('display','block')
main_div.add(task_div)
search = Search("sthpw/task")
#if process != "":
# search.add_filter("process", process)
search.add_filter("search_type", search_type)
search.add_filter("search_id", search_id)
#search.set_limit(4)
task_table = TableWdg("sthpw/task", "summary", css='minimal')
task_table.set_id('sthpw/task%s' % search_id)
task_table.set_search(search)
task_div.add(task_table)
content_id ='summary_hist_%s' %sobject.get_id()
title_id = 'hist_head_%s' %sobject.get_id()
hist_head = HtmlElement.h3("Checkin History")
my.add_title_style(hist_head, title_id, content_id)
hist_div = DivWdg(id=content_id)
hist_div.add_style('display','block')
#.........这里部分代码省略.........