Changeset 4419
- Timestamp:
- 12/09/07 20:40:56 (1 year ago)
- Files:
-
- trunk/nuxleus/Scripts/openid/gateway/server.py (modified) (1 diff)
- trunk/nuxleus/Web/Development/Web.config (modified) (1 diff)
- trunk/nuxleus/Web/Development/page/config/config.xml (modified) (1 diff)
- trunk/nuxleus/Web/Development/service/transform/controller/atompub/add/base.xslt (modified) (3 diffs)
- trunk/nuxleus/Web/OpenID (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/nuxleus/Scripts/openid/gateway/server.py
r4234 r4419 8 8 'server.socket_host': '127.0.0.1', 9 9 'server.socket_queue_size': 25, 10 'log.screen': False,10 'log.screen': True, 11 11 'log.access_file': './access.log', 12 12 'log.error_file': './error.log', trunk/nuxleus/Web/Development/Web.config
r4411 r4419 16 16 </configSections> 17 17 <Xameleon.WebApp> 18 <xameleon debugMode="no" useMemcached=" no" defaultEngine="Saxon">18 <xameleon debugMode="no" useMemcached="yes" defaultEngine="Saxon"> 19 19 <baseSettings baseXsltName="base" objectHashKey="1234567890"/> 20 20 <preCompiledXslt base-uri="~"> trunk/nuxleus/Web/Development/page/config/config.xml
r4418 r4419 28 28 <advice:dot>.</advice:dot> 29 29 <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> 32 32 <advice:domain>@@domain-name@@|$$test:@@root@@IfTrue:@@dot@@@@root@@IfFalse:@@empty@@$$|</advice:domain> 33 33 <advice:domain.label>amp.fm</advice:domain.label> trunk/nuxleus/Web/Development/service/transform/controller/atompub/add/base.xslt
r4418 r4419 36 36 <xsl:variable name="image_file_path" select="concat($image_path, $filename)"/> 37 37 <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')"/> 38 39 <xsl:variable name="comment-atom-entry"> 39 40 <atom:entry> … … 50 51 <xsl:value-of select="fn:current-dateTime()"/> 51 52 </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"/> 53 54 <atom:link rel="alternate" href="{concat($base_uri, $base_path)}" type="text/html"/> 54 55 <xsl:if test="not(empty($imageInfo))"> … … 84 85 <xsl:copy-of select="$comment-atom-entry"/> 85 86 </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> 87 98 88 99
