Ignore:
Timestamp:
14 May 2012, 10:04:25 (13 years ago)
Author:
Henrik Bettermann
Message:

Rename uniben to aaue.

Location:
main/waeup.aaue/trunk/src/waeup/aaue
Files:
5 edited
1 moved

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/browser/pages.py

    r8247 r8444  
    1919from waeup.kofa.browser.pages import (
    2020    SessionConfigurationAddFormPage, SessionConfigurationManageFormPage)
    21 from waeup.uniben.interfaces import (
     21from waeup.aaue.interfaces import (
    2222    ICustomSessionConfiguration, ICustomSessionConfigurationAdd)
    2323
  • main/waeup.aaue/trunk/src/waeup/aaue/browser/resources.py

    r8441 r8444  
    2121    )
    2222
    23 #: All local resources are registered under the name ``waeup_uniben``.
    24 waeup_uniben = Library('waeup_uniben', 'static')
     23#: All local resources are registered under the name ``waeup_custom``.
     24waeup_custom = Library('waeup_custom', 'static')
    2525
    2626custom_theme = ResourceInclusion(
    27     waeup_uniben, 'custom_theme.css',
     27    waeup_custom, 'custom_theme.css',
    2828    depends = [waeup_base_css])
    2929
    30 favicon = ResourceInclusion(waeup_uniben, 'favicon.ico')
     30favicon = ResourceInclusion(waeup_custom, 'favicon.ico')
  • main/waeup.aaue/trunk/src/waeup/aaue/browser/static/custom_theme.css

    r8441 r8444  
    4444
    4545body {
    46   background-color: #f3eff2;
    4746}
    4847
  • main/waeup.aaue/trunk/src/waeup/aaue/browser/tests.py

    r8441 r8444  
    2222from zope.security.interfaces import Unauthorized
    2323from waeup.kofa.testing import FunctionalTestCase
    24 from waeup.uniben.testing import FunctionalLayer
     24from waeup.aaue.testing import FunctionalLayer
    2525from waeup.kofa.app import University
    2626
     
    5252        self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')
    5353        self.browser.open('http://localhost/app/configuration')
    54         self.assertMatches('...Uniben Theme...', self.browser.contents)
     54        self.assertMatches('...AAUE Theme...', self.browser.contents)
    5555        self.browser.getControl(name="form.skin").value = ['custom theme']
    5656        self.browser.getControl("Save").click()
     
    5858        return
    5959
    60     def test_access_live_url(self):
    61         # We can't access the system with basic authentication
    62         self.browser.addHeader('Authorization', 'Basic grok:grok')
    63         self.assertRaises(
    64             Unauthorized, self.browser.open, 'https://uniben-kofa.waeup.org')
    65         return
     60    #def test_access_live_url(self):
     61    #    # We can't access the system with basic authentication
     62    #    self.browser.addHeader('Authorization', 'Basic grok:grok')
     63    #    self.assertRaises(
     64    #        Unauthorized, self.browser.open, 'https://aaue.waeup.org')
     65    #    return
  • main/waeup.aaue/trunk/src/waeup/aaue/browser/theming.py

    r8441 r8444  
    1818import grok
    1919from waeup.kofa.browser.interfaces import ITheme
    20 from waeup.uniben.browser.resources import custom_theme, favicon
     20from waeup.aaue.browser.resources import custom_theme, favicon
    2121
    22 from waeup.uniben.interfaces import MessageFactory as _
     22from waeup.aaue.interfaces import MessageFactory as _
    2323
    2424class CustomTheme(grok.GlobalUtility):
     
    2828    grok.name('custom theme')
    2929
    30     description = _(u'Uniben Theme')
     30    description = _(u'AAUE Theme')
    3131
    3232    def getResources(self):
Note: See TracChangeset for help on using the changeset viewer.