Changeset 11303 for main/waeup.kwarapoly/trunk/src/waeup
- Timestamp:
- 22 Feb 2014, 21:00:38 (11 years ago)
- Location:
- main/waeup.kwarapoly/trunk
- Files:
-
- 5 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk
- Property svn:ignore
-
old new 5 5 develop-eggs 6 6 parts 7 sources 7 8 var
-
- Property svn:mergeinfo changed
/main/waeup.kwarapoly/branches/henrik-diazo-themed (added) merged: 11135-11136,11145,11148
- Property svn:ignore
-
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly
- Property svn:mergeinfo changed
/main/waeup.kwarapoly/branches/henrik-diazo-themed/src/waeup/kwarapoly (added) merged: 11135-11136,11145
- Property svn:mergeinfo changed
-
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/browser/tests.py
r9347 r11303 48 48 clearSite() 49 49 shutil.rmtree(self.dc_root) 50 51 def test_custom_theme(self):52 self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')53 self.browser.open('http://localhost/app/configuration')54 self.assertMatches('...KwaraPoly Theme...', self.browser.contents)55 self.browser.getControl(name="form.skin").value = ['custom theme']56 self.browser.getControl("Save").click()57 self.browser.open('http://localhost/app/configuration')58 return -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interswitch/browser.py
r10844 r11303 52 52 #URL = '/test_paydirect/services/TransactionQueryWs.asmx' 53 53 httplib.HTTPConnection.debuglevel = 0 54 55 def interswitch_img_url(view):56 static = view.static57 if static is None or static.get(58 'interswitch_verve_mastercard.gif', None) is None:59 static = queryAdapter(60 view.request, Interface, name='waeup.kwarapoly.interswitch')61 return static['interswitch_verve_mastercard.gif']()62 54 63 55 class InterswitchPageStudent(KofaPage): -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interswitch/browser_templates/applicant_goto_interswitch.pt
r10131 r11303 8 8 9 9 <table class="form-table" i18n:domain="waeup.kofa"> 10 <thead>11 </thead>12 10 <tbody> 13 11 <tr> … … 72 70 <input type="hidden" name="payment_params" value="college_split" /> 73 71 <span tal:replace="structure view/xml_data"></span> 74 75 <input type="submit" class="btn " tal:attributes="value view/submit_button"/>72 <br /> 73 <input type="submit" class="btn btn-primary" tal:attributes="value view/submit_button"/> 76 74 77 75 <br /><br /> 78 76 79 <img tal:attributes="src view/interswitch_img_url" />77 <img src="/static/img/interswitch_verve_mastercard.gif" /> 80 78 81 79 </form> -
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/interswitch/browser_templates/student_goto_interswitch.pt
r9996 r11303 8 8 9 9 <table class="form-table" i18n:domain="waeup.kofa"> 10 <thead>11 </thead>12 10 <tbody> 13 11 <tr> … … 72 70 <input type="hidden" name="payment_params" value="college_split" /> 73 71 <span tal:replace="structure view/xml_data"></span> 74 75 <input type="submit" class="btn " tal:attributes="value view/submit_button"/>72 <br /> 73 <input type="submit" class="btn btn-primary" tal:attributes="value view/submit_button"/> 76 74 77 75 <br /><br /> 78 76 79 <img tal:attributes="src view/interswitch_img_url" />77 <img src="/static/img/interswitch_verve_mastercard.gif" /> 80 78 81 79 </form>
Note: See TracChangeset for help on using the changeset viewer.