Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
francois
erp5
Commits
ee5f212f
Commit
ee5f212f
authored
Jun 18, 2014
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove class tool's dtmls
parent
1b9bb4cd
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
0 additions
and
513 deletions
+0
-513
product/ERP5Type/dtml/editConstraintForm.dtml
product/ERP5Type/dtml/editConstraintForm.dtml
+0
-56
product/ERP5Type/dtml/editDocumentForm.dtml
product/ERP5Type/dtml/editDocumentForm.dtml
+0
-58
product/ERP5Type/dtml/editExtensionForm.dtml
product/ERP5Type/dtml/editExtensionForm.dtml
+0
-57
product/ERP5Type/dtml/editPropertySheetForm.dtml
product/ERP5Type/dtml/editPropertySheetForm.dtml
+0
-56
product/ERP5Type/dtml/editTestForm.dtml
product/ERP5Type/dtml/editTestForm.dtml
+0
-55
product/ERP5Type/dtml/viewConstraintList.dtml
product/ERP5Type/dtml/viewConstraintList.dtml
+0
-39
product/ERP5Type/dtml/viewDocumentList.dtml
product/ERP5Type/dtml/viewDocumentList.dtml
+0
-76
product/ERP5Type/dtml/viewExtensionList.dtml
product/ERP5Type/dtml/viewExtensionList.dtml
+0
-40
product/ERP5Type/dtml/viewPropertySheetList.dtml
product/ERP5Type/dtml/viewPropertySheetList.dtml
+0
-40
product/ERP5Type/dtml/viewTestList.dtml
product/ERP5Type/dtml/viewTestList.dtml
+0
-36
No files found.
product/ERP5Type/dtml/editConstraintForm.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<h2>Edit Constraint Class: <dtml-var class_id>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('Constraint')[class_id])">
</dtml-if></h2>
<form method="POST" action="<dtml-var absolute_url>">
<input type="hidden" name=":default_method" value="changeConstraintEditingPreferences">
<table width="100%" cellspacing="0" cellpadding="2" border="0">
<dtml-if errors>
<tr>
<td align="left" valign="middle" class="form-label">Errors</td>
<td align="left" valign="middle" style="background-color: #FFDDDD">
<pre><dtml-var expr="str(errors)" html_quote></pre>
</td>
</tr>
</dtml-if>
<dtml-with keyword_args mapping>
<tr>
<td align="left" valign="top" colspan="2">
<div style="width: 100%;">
<dtml-let cols="REQUEST.get('dtpref_cols', '100%')"
rows="REQUEST.get('dtpref_rows', '20')">
<dtml-if "cols[-1]=='%'">
<textarea name="text:text" wrap="off" style="width: &dtml-cols;;"
<dtml-else>
<textarea name="text:text" wrap="off" cols="&dtml-cols;"
</dtml-if>
rows="&dtml-rows;"><dtml-var "getConstraintText(class_id)"></textarea>
</dtml-let>
</div>
</td>
</tr>
</dtml-with>
<tr>
<td>
<div class="form-element">
<input class="form-element" type="hidden" name="class_id:string" value="<dtml-var class_id>">
<input class="form-element" type="submit" value="Save" name="editConstraint:method">
<input class="form-element" type="submit" value="Reload" name="importConstraint:method">
<input class="form-element" type="submit" name="height" value="Taller">
<input class="form-element" type="submit" name="height" value="Shorter">
<input class="form-element" type="submit" name="width" value="Wider">
<input class="form-element" type="submit" name="width" value="Narrower">
</div>
</td>
</tr>
</table>
</form>
<dtml-var manage_page_footer>
product/ERP5Type/dtml/editDocumentForm.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<h2>Edit Document Class: <dtml-var class_id>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('Document')[class_id])">
</dtml-if></h2>
<form method="POST" action="<dtml-var absolute_url>">
<input type="hidden" name=":default_method" value="changeDocumentEditingPreferences">
<table width="100%" cellspacing="0" cellpadding="2" border="0">
<dtml-if errors>
<tr>
<td align="left" valign="middle" class="form-label">Errors</td>
<td align="left" valign="middle" style="background-color: #FFDDDD">
<pre><dtml-var expr="str(errors)" html_quote></pre>
</td>
</tr>
</dtml-if>
<dtml-with keyword_args mapping>
<tr>
<td align="left" valign="top" colspan="2">
<div style="width: 100%;">
<dtml-let cols="REQUEST.get('dtpref_cols', '100%')"
rows="REQUEST.get('dtpref_rows', '20')">
<dtml-if "cols[-1]=='%'">
<textarea name="text:text" wrap="off" style="width: &dtml-cols;;"
<dtml-else>
<textarea name="text:text" wrap="off" cols="&dtml-cols;"
</dtml-if>
rows="&dtml-rows;"><dtml-var "getDocumentText(class_id)"></textarea>
</dtml-let>
</div>
</td>
</tr>
</dtml-with>
<tr>
<td>
<div class="form-element">
<input class="form-element" type="hidden" name="class_id:string" value="<dtml-var class_id>">
<input class="form-element" type="submit" value="Save" name="editDocument:method">
<input class="form-element" type="submit" value="Reload" name="importDocument:method">
<input class="form-element" type="submit" value="Save & Reload" name="editAndImportDocument:method">
<input class="form-element" type="submit" name="height" value="Taller">
<input class="form-element" type="submit" name="height" value="Shorter">
<input class="form-element" type="submit" name="width" value="Wider">
<input class="form-element" type="submit" name="width"
value="Narrower">
</div>
</td>
</tr>
</table>
</form>
<dtml-var manage_page_footer>
product/ERP5Type/dtml/editExtensionForm.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<h2>Edit Extension Class: <dtml-var class_id>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('Extensions')[class_id])">
</dtml-if></h2>
<form method="POST" action="<dtml-var absolute_url>">
<input type="hidden" name=":default_method" value="changeExtensionEditingPreferences">
<table width="100%" cellspacing="0" cellpadding="2" border="0">
<dtml-if errors>
<tr>
<td align="left" valign="middle" class="form-label">Errors</td>
<td align="left" valign="middle" style="background-color: #FFDDDD">
<pre><dtml-var expr="str(errors)" html_quote></pre>
</td>
</tr>
</dtml-if>
<dtml-with keyword_args mapping>
<tr>
<td align="left" valign="top" colspan="2">
<div style="width: 100%;">
<dtml-let cols="REQUEST.get('dtpref_cols', '100%')"
rows="REQUEST.get('dtpref_rows', '20')">
<dtml-if "cols[-1]=='%'">
<textarea name="text:text" wrap="off" style="width: &dtml-cols;;"
<dtml-else>
<textarea name="text:text" wrap="off" cols="&dtml-cols;"
</dtml-if>
rows="&dtml-rows;"><dtml-var "getExtensionText(class_id)"></textarea>
</dtml-let>
</div>
</td>
</tr>
</dtml-with>
<tr>
<td>
<div class="form-element">
<input class="form-element" type="hidden" name="class_id:string" value="<dtml-var class_id>">
<input class="form-element" type="submit" value="Save" name="editExtension:method">
<input class="form-element" type="submit" name="height" value="Taller">
<input class="form-element" type="submit" name="height" value="Shorter">
<input class="form-element" type="submit" name="width" value="Wider">
<input class="form-element" type="submit" name="width"
value="Narrower">
</div>
</td>
</tr>
</table>
</form>
<dtml-var manage_page_footer>
product/ERP5Type/dtml/editPropertySheetForm.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<h2>Edit Property Sheet Class: <dtml-var class_id>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('PropertySheet')[class_id])">
</dtml-if></h2>
<form method="POST" action="<dtml-var absolute_url>">
<input type="hidden" name=":default_method" value="changePropertySheetEditingPreferences">
<table width="100%" cellspacing="0" cellpadding="2" border="0">
<dtml-if errors>
<tr>
<td align="left" valign="middle" class="form-label">Errors</td>
<td align="left" valign="middle" style="background-color: #FFDDDD">
<pre><dtml-var expr="str(errors)" html_quote></pre>
</td>
</tr>
</dtml-if>
<dtml-with keyword_args mapping>
<tr>
<td align="left" valign="top" colspan="2">
<div style="width: 100%;">
<dtml-let cols="REQUEST.get('dtpref_cols', '100%')"
rows="REQUEST.get('dtpref_rows', '20')">
<dtml-if "cols[-1]=='%'">
<textarea name="text:text" wrap="off" style="width: &dtml-cols;;"
<dtml-else>
<textarea name="text:text" wrap="off" cols="&dtml-cols;"
</dtml-if>
rows="&dtml-rows;"><dtml-var "getPropertySheetText(class_id)"></textarea>
</dtml-let>
</div>
</td>
</tr>
</dtml-with>
<tr>
<td>
<div class="form-element">
<input class="form-element" type="hidden" name="class_id:string" value="<dtml-var class_id>">
<input class="form-element" type="submit" value="Save" name="editPropertySheet:method">
<input class="form-element" type="submit" value="Reload" name="importPropertySheet:method">
<input class="form-element" type="submit" name="height" value="Taller">
<input class="form-element" type="submit" name="height" value="Shorter">
<input class="form-element" type="submit" name="width" value="Wider">
<input class="form-element" type="submit" name="width" value="Narrower">
</div>
</td>
</tr>
</table>
</form>
<dtml-var manage_page_footer>
product/ERP5Type/dtml/editTestForm.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<h2>Edit Test Class: <dtml-var class_id>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('tests')[class_id])">
</dtml-if></h2>
<form method="POST" action="<dtml-var absolute_url>">
<input type="hidden" name=":default_method" value="changeTestEditingPreferences">
<table width="100%" cellspacing="0" cellpadding="2" border="0">
<dtml-if errors>
<tr>
<td align="left" valign="middle" class="form-label">Errors</td>
<td align="left" valign="middle" style="background-color: #FFDDDD">
<pre><dtml-var expr="str(errors)" html_quote></pre>
</td>
</tr>
</dtml-if>
<dtml-with keyword_args mapping>
<tr>
<td align="left" valign="top" colspan="2">
<div style="width: 100%;">
<dtml-let cols="REQUEST.get('dtpref_cols', '100%')"
rows="REQUEST.get('dtpref_rows', '20')">
<dtml-if "cols[-1]=='%'">
<textarea name="text:text" wrap="off" style="width: &dtml-cols;;"
<dtml-else>
<textarea name="text:text" wrap="off" cols="&dtml-cols;"
</dtml-if>
rows="&dtml-rows;"><dtml-var "getTestText(class_id)"></textarea>
</dtml-let>
</div>
</td>
</tr>
</dtml-with>
<tr>
<td>
<div class="form-element">
<input class="form-element" type="hidden" name="class_id:string" value="<dtml-var class_id>">
<input class="form-element" type="submit" value="Save" name="editTest:method">
<input class="form-element" type="submit" name="height" value="Taller">
<input class="form-element" type="submit" name="height" value="Shorter">
<input class="form-element" type="submit" name="width" value="Wider">
<input class="form-element" type="submit" name="width" value="Narrower">
</div>
</td>
</tr>
</table>
</form>
<dtml-var manage_page_footer>
product/ERP5Type/dtml/viewConstraintList.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<div class="std-text"><p><strong>Local Constraint Classes</strong></p></div>
<form method="POST" action="newConstraint">
<table width="100%">
<tr class="list-header">
<th>
Class
</th>
<th>
Actions
</th>
<dtml-in getLocalConstraintList>
<dtml-if sequence-odd>
<tr class="row-normal">
<dtml-else>
<tr class="row-hilite">
</dtml-if>
<td>
<div class="list-item"><dtml-var sequence-item>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('Constraint')[_['sequence-item']])">
</dtml-if>
</div>
</td>
<td>
<div class="list-item"><a href="manage_editConstraintForm?class_id=<dtml-var sequence-item>">edit</a> <a href="importConstraint?class_id=<dtml-var sequence-item>">reload</a>
</div>
</td>
</tr>
</dtml-in>
</table>
<input type="text" name="class_id" /> <input type="submit" value="Create New Constraint" />
</form>
<dtml-var manage_page_footer>
product/ERP5Type/dtml/viewDocumentList.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<div class="std-text"><p><strong>Local Document Classes</strong></p></div>
<form method="POST" action="newDocument">
<table width="100%">
<tr class="list-header">
<th>
Class
</th>
<th>
Action
</th>
<dtml-in getLocalDocumentList>
<dtml-if sequence-odd>
<tr class="row-normal">
<dtml-else>
<tr class="row-hilite">
</dtml-if>
<td>
<div class="list-item"><dtml-var sequence-item>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('Document')[_['sequence-item']])">
</dtml-if>
</div>
</td>
<td>
<div class="list-item"><a href="manage_editDocumentForm?class_id=<dtml-var sequence-item>">edit</a> <a href="importDocument?class_id=<dtml-var sequence-item>">reload</a>
</div>
</td>
</tr>
</dtml-in>
</table>
<input type="text" name="class_id" /> <input type="submit" value="Create New Document" />
</form>
<hr/>
<div class="std-text"><p><strong>Product Document Classes</strong></p></div>
<table width="100%">
<tr class="list-header">
<th>
Class
</th>
<th>
Path
</th>
<th>
Action
</th>
<dtml-in getProductDocumentPathList>
<dtml-if sequence-odd>
<tr class="row-normal">
<dtml-else>
<tr class="row-hilite">
</dtml-if>
<td>
<div class="list-item"><dtml-var sequence-key></div>
</td>
<td>
<div class="list-item"><dtml-var sequence-item></div>
</td>
<td>
<div class="list-item"><a href="importDocument?class_id=<dtml-var sequence-key>&class_path=<dtml-var sequence-item>">reload</a>
</div>
</td>
</tr>
</dtml-in>
</table>
<dtml-var manage_page_footer>
product/ERP5Type/dtml/viewExtensionList.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<div class="std-text"><p><strong>Local Extension Classes</strong></p></div>
<form method="POST" action="newExtension">
<table width="100%">
<tr class="list-header">
<th>
Class
</th>
<th>
Actions
</th>
<dtml-in getLocalExtensionList>
<dtml-if sequence-odd>
<tr class="row-normal">
<dtml-else>
<tr class="row-hilite">
</dtml-if>
<td>
<div class="list-item"><dtml-var sequence-item>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('Extensions')[_['sequence-item']])">
</dtml-if>
</div>
</td>
<td>
<div class="list-item"><a href="manage_editExtensionForm?class_id=<dtml-var sequence-item>">edit</a>
</div>
</td>
</tr>
</dtml-in>
</table>
<input type="text" name="class_id" /> <input type="submit" value="Create New Extension" />
</form>
<dtml-var manage_page_footer>
product/ERP5Type/dtml/viewPropertySheetList.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<div class="std-text"><p><strong>Local Property Sheet Classes</strong></p></div>
<form method="POST" action="newPropertySheet">
<table width="100%">
<tr class="list-header">
<th>
Class
</th>
<th>
Actions
</th>
<dtml-in getLocalPropertySheetList>
<dtml-if sequence-odd>
<tr class="row-normal">
<dtml-else>
<tr class="row-hilite">
</dtml-if>
<td>
<div class="list-item"><dtml-var sequence-item>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('PropertySheet')[_['sequence-item']])">
</dtml-if>
</div>
</td>
<td>
<div class="list-item"><a href="manage_editPropertySheetForm?class_id=<dtml-var sequence-item>">edit</a> <a href="importPropertySheet?class_id=<dtml-var sequence-item>">reload</a>
</div>
</td>
</tr>
</dtml-in>
</table>
<input type="text" name="class_id" /> <input type="submit" value="Create New Property Sheet" />
</form>
<dtml-var manage_page_footer>
product/ERP5Type/dtml/viewTestList.dtml
deleted
100644 → 0
View file @
1b9bb4cd
<dtml-var manage_page_header>
<dtml-var manage_tabs>
<div class="std-text"><p><strong>Local Test Classes</strong></p></div>
<form method="POST" action="newTest">
<table width="100%">
<tr class="list-header">
<th>
Class
</th>
<th>
Actions
</th>
<dtml-in getLocalTestList>
<tr>
<td>
<div class="list-item"><dtml-var sequence-item>
<dtml-if expr="hasattr(this(), 'externalEditLink_')">
<dtml-var expr="externalEditLink_(this()._getOb('tests')[_['sequence-item']])">
</dtml-if>
</div>
</td>
<td>
<div class="list-item"><a href="manage_editTestForm?class_id=<dtml-var sequence-item>">edit</a>
</div>
</td>
</tr>
</dtml-in>
</table>
<input type="text" name="class_id" /> <input type="submit" value="Create New Test" />
</form>
<dtml-var manage_page_footer>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment