-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #275 from euphorie/ale/quaive-app/widget-dependencies
Implement dependencies for all the widgets
- Loading branch information
Showing
18 changed files
with
153 additions
and
79 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
53 changes: 30 additions & 23 deletions
53
src/osha/oira/ploneintranet/z3cform/templates/textlines_display.pt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,35 @@ | ||
<html xmlns="http://www.w3.org/1999/xhtml" | ||
xmlns:tal="http://xml.zope.org/namespaces/tal" | ||
tal:define=" | ||
dependencies nocall:view/@@dependencies; | ||
" | ||
tal:omit-tag="" | ||
> | ||
<legend>${view/label}</legend> | ||
<span class="" | ||
id="" | ||
tal:attributes=" | ||
id view/id; | ||
class view/klass; | ||
style view/style; | ||
title view/title; | ||
lang view/lang; | ||
onclick view/onclick; | ||
ondblclick view/ondblclick; | ||
onmousedown view/onmousedown; | ||
onmouseup view/onmouseup; | ||
onmouseover view/onmouseover; | ||
onmousemove view/onmousemove; | ||
onmouseout view/onmouseout; | ||
onkeypress view/onkeypress; | ||
onkeydown view/onkeydown; | ||
onkeyup view/onkeyup; | ||
" | ||
><tal:block condition="view/value" | ||
content="structure python:view.value.replace('\r\n', '<br/>')" | ||
/></span> | ||
<div class="${dependencies/ploneintranet_classes}" | ||
data-pat-depends="${dependencies/data_pat_depends}" | ||
> | ||
<legend>${view/label}</legend> | ||
<span class="" | ||
id="" | ||
tal:attributes=" | ||
id view/id; | ||
class view/klass; | ||
style view/style; | ||
title view/title; | ||
lang view/lang; | ||
onclick view/onclick; | ||
ondblclick view/ondblclick; | ||
onmousedown view/onmousedown; | ||
onmouseup view/onmouseup; | ||
onmouseover view/onmouseover; | ||
onmousemove view/onmousemove; | ||
onmouseout view/onmouseout; | ||
onkeypress view/onkeypress; | ||
onkeydown view/onkeydown; | ||
onkeyup view/onkeyup; | ||
" | ||
><tal:block condition="view/value" | ||
content="structure python:view.value.replace('\r\n', '<br/>')" | ||
/></span> | ||
</div> | ||
</html> |
Oops, something went wrong.