Changeset 12809 for main/waeup.ikoba


Ignore:
Timestamp:
21 Mar 2015, 13:31:16 (10 years ago)
Author:
Henrik Bettermann
Message:

Remove ellipses.

Location:
main/waeup.ikoba/trunk/src/waeup/ikoba
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/customers/authentication.py

    r12523 r12809  
    111111    def checkPassword(self, password):
    112112        """Check whether the given `password` matches the one stored by
    113         customers or the temporary password set by officers.
     113        customers or the temporary password set by the system.
    114114
    115115        We additionally check if customer account has been suspended.
  • main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser.py

    r12806 r12809  
    820820    @property
    821821    def title(self):
    822         return "%s..." % self.context.document_id[:9]
     822        return "%s" % self.context.document_id[:9]
    823823
    824824
     
    11801180    @property
    11811181    def title(self):
    1182         return "%s..." % self.context.contract_id[:9]
     1182        return "%s" % self.context.contract_id[:9]
    11831183
    11841184
  • main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/contractsmanagepage.pt

    r12445 r12809  
    2323        <td>
    2424          <a tal:attributes="href python: view.url(contract)">
    25           <span tal:content="python: contract.contract_id[:9]">CONID</span>...</a>
     25            <span tal:content="python: contract.contract_id[:9]">CONID</span>
     26          </a>
    2627        </td>
    2728        <td>
  • main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/documentsmanagepage.pt

    r12445 r12809  
    2323        <td>
    2424          <a tal:attributes="href python: view.url(document)">
    25           <span tal:content="python: document.document_id[:9]">DOCID</span>...</a>
     25            <span tal:content="python: document.document_id[:9]">DOCID</span>
     26          </a>
    2627        </td>
    2728        <td>
  • main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/paymentspage.pt

    r12762 r12809  
    1515  <tbody>
    1616    <tr tal:repeat="value view/payments">
    17       <td><span tal:content="python: value[0].payment_id[:9]"></span>...</td>
     17      <td tal:content="python: value[0].payment_id[:9]">PAYMENT_ID</td>
    1818      <td tal:content="python: layout.formatDatetime(value[0].creation_date)">CREATION DATE</td>
    1919      <td tal:content="python: layout.formatDatetime(value[0].payment_date)">PAYMENT DATE</td>
  • main/waeup.ikoba/trunk/src/waeup/ikoba/customers/interfaces.py

    r12768 r12809  
    143143        title = _(u'Email'),
    144144        required = True,
    145         constraint=validate_email,
     145        constraint = validate_email,
    146146        source = contextual_email_source,
    147147        )
     
    214214        title = _(u'Email Address'),
    215215        required = True,
    216         constraint=validate_email,
     216        constraint = validate_email,
    217217        )
    218218
     
    242242        title = _(u'Email'),
    243243        required = True,
    244         constraint=validate_email,
     244        constraint = validate_email,
    245245        source = contextual_email_source,
    246246        )
     
    266266        title = _(u'Document Id'),
    267267        required = False,
    268         constraint=validate_uuid,
     268        constraint = validate_uuid,
    269269        )
    270270
     
    321321        title = _(u'Contract Id'),
    322322        required = False,
    323         constraint=validate_uuid,
     323        constraint = validate_uuid,
    324324        )
    325325
     
    333333        title = _(u'Options/Fees'),
    334334        value_type = schema.Choice(
    335             source=ProductOptionSourceFactory(),
     335            source = ProductOptionSourceFactory(),
    336336            required = True,
    337337            ),
    338         constraint=unique_currency,
     338        constraint = unique_currency,
    339339        required = False,
    340340        readonly = False,
     
    392392    product_options = schema.List(
    393393        value_type = ProductOptionField(),
    394         constraint=unique_currency,
     394        constraint = unique_currency,
    395395        required = False,
    396396        readonly = False,
  • main/waeup.ikoba/trunk/src/waeup/ikoba/customers/tests/test_interfaces.py

    r12785 r12809  
    134134        source = CustomerDocumentSource()
    135135        result = source.factory.getTitle(object(), self.document)
    136         self.assertEqual(result, u'DOC1... - My Sample Document')
     136        self.assertEqual(result, u'DOC1 - My Sample Document')
    137137
    138138    def test_getValues_RefereeSourceFactory(self):
  • main/waeup.ikoba/trunk/src/waeup/ikoba/customers/vocabularies.py

    r12785 r12809  
    195195
    196196    def getTitle(self, context, value):
    197         return "%s... - %s" % (value.document_id[:9], value.title)
     197        return "%s - %s" % (value.document_id[:9], value.title)
    198198
    199199
  • main/waeup.ikoba/trunk/src/waeup/ikoba/payments/browser_templates/containermanagepage.pt

    r12763 r12809  
    4343            <input type="checkbox" name="entries" tal:attributes="value python:value[0].__name__" />
    4444          </td>
    45           <td><span tal:content="python: value[0].payment_id[:9]"></span>...</td>
     45          <td tal:content="python: value[0].payment_id[:9]">PAYMENT_ID</td>
    4646          <td tal:content="python: layout.formatDatetime(value[0].creation_date)">CREATION DATE</td>
    4747          <td tal:content="python: layout.formatDatetime(value[0].payment_date)">PAYMENT DATE</td>
  • main/waeup.ikoba/trunk/src/waeup/ikoba/payments/browser_templates/containerpage.pt

    r12762 r12809  
    3838    <tbody>
    3939      <tr tal:repeat="value view/hitlist">
    40         <td><span tal:content="python: value[0].payment_id[:9]"></span>...</td>
     40        <td tal:content="python: value[0].payment_id[:9]">PAYMENT_ID</td>
    4141        <td tal:content="python: layout.formatDatetime(value[0].creation_date)">CREATION DATE</td>
    4242        <td tal:content="python: layout.formatDatetime(value[0].payment_date)">PAYMENT DATE</td>
Note: See TracChangeset for help on using the changeset viewer.