Changeset 4419

Show
Ignore:
Timestamp:
12/09/07 20:40:56 (1 year ago)
Author:
xmlhacker
Message:

various updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/nuxleus/Scripts/openid/gateway/server.py

    r4234 r4419  
    88                   'server.socket_host': '127.0.0.1', 
    99                   'server.socket_queue_size': 25, 
    10                    'log.screen': False, 
     10                   'log.screen': True, 
    1111                   'log.access_file': './access.log', 
    1212                   'log.error_file': './error.log', 
  • trunk/nuxleus/Web/Development/Web.config

    r4411 r4419  
    1616  </configSections> 
    1717  <Xameleon.WebApp> 
    18     <xameleon debugMode="no" useMemcached="no" defaultEngine="Saxon"> 
     18    <xameleon debugMode="no" useMemcached="yes" defaultEngine="Saxon"> 
    1919      <baseSettings baseXsltName="base" objectHashKey="1234567890"/> 
    2020      <preCompiledXslt base-uri="~"> 
  • trunk/nuxleus/Web/Development/page/config/config.xml

    r4418 r4419  
    2828    <advice:dot>.</advice:dot> 
    2929    <advice:colon>:</advice:colon> 
    30     <advice:domain-name>localhost</advice:domain-name> 
    31     <advice:port>8080</advice:port> 
     30    <advice:domain-name>dev.amp</advice:domain-name> 
     31    <advice:root>fm</advice:root> 
    3232    <advice:domain>@@domain-name@@|$$test:@@root@@IfTrue:@@dot@@@@root@@IfFalse:@@empty@@$$|</advice:domain> 
    3333    <advice:domain.label>amp.fm</advice:domain.label> 
  • trunk/nuxleus/Web/Development/service/transform/controller/atompub/add/base.xslt

    r4418 r4419  
    3636    <xsl:variable name="image_file_path" select="concat($image_path, $filename)"/> 
    3737    <xsl:variable name="imageInfo" select="file-stream:SaveUploadedFileCollection($request, 'ev_comment_pix', $image_file_path)" /> 
     38    <xsl:variable name="entry-uri" select="concat($uri, '.atom')"/> 
    3839    <xsl:variable name="comment-atom-entry"> 
    3940      <atom:entry> 
     
    5051          <xsl:value-of select="fn:current-dateTime()"/> 
    5152        </atom:updated> 
    52         <atom:link rel="self" href="{concat($uri, '.atom')}" type="application/atom+xml;type=entry"/> 
     53        <atom:link rel="self" href="{$entry-uri}" type="application/atom+xml;type=entry"/> 
    5354        <atom:link rel="alternate" href="{concat($base_uri, $base_path)}" type="text/html"/> 
    5455        <xsl:if test="not(empty($imageInfo))"> 
     
    8485      <xsl:copy-of select="$comment-atom-entry"/> 
    8586    </xsl:result-document> 
    86  
     87     
     88    <xsl:variable name="set-status-code" select="response:set-status-code($response, 303)"/> 
     89    <xsl:variable name="set-location" select="response:set-location($response, $member_path)"/> 
     90    <redirect> 
     91      <status-code> 
     92        <xsl:sequence select="$set-status-code" /> 
     93      </status-code> 
     94      <location> 
     95        <xsl:sequence select="$set-location"/> 
     96      </location> 
     97    </redirect> 
    8798 
    8899