Changeset 4463

Show
Ignore:
Timestamp:
12/19/07 19:46:47 (1 year ago)
Author:
xmlhacker
Message:

various updates

Files:

Legend:

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

    r4335 r4463  
    3434 
    3535BASE_URL =  "http://openid.%s" % HOST 
    36 BASE_SECURE_URL = "https://openid.%s" % HOST 
     36BASE_SECURE_URL = "http://openid.%s" % HOST 
    3737TRUST_URL =  "http://openid.%s/trust" % HOST 
    3838OID_SERVICE_URL = "http://openid.%s/service" % HOST 
     
    8080            raise redirect_to_login_page(from_url) 
    8181    else: 
    82         b = s3conn.create_bucket('openid.name') 
     82        b = s3conn.create_bucket('openid.amp.fm') 
    8383        k = Key(b) 
    8484        k.key = '%s/cookie' % login 
     
    146146 
    147147        oid = login 
    148         b = self.s3conn.create_bucket('openid.name') 
     148        b = self.s3conn.create_bucket('openid.amp.fm') 
    149149        k = Key(b) 
    150150        k.key = oid 
     
    177177            if login != None and session_id != None: 
    178178                self.mc.delete('%s.openid.name.cookie' % login) 
    179                 b = self.s3conn.create_bucket('openid.name') 
     179                b = self.s3conn.create_bucket('openid.amp.fm') 
    180180                b.delete_key('%s/cookie' % login) 
    181181 
     
    210210        redirect_to = redirect_to or '' 
    211211        oid = login 
    212         b = self.s3conn.create_bucket('openid.name') 
     212        b = self.s3conn.create_bucket('openid.amp.fm') 
    213213        k = Key(b) 
    214214        k.key = oid 
     
    253253    def GET(self): 
    254254        login = check_login(self.s3conn, self.mc, cherrypy.url()) 
    255         b = self.s3conn.create_bucket('openid.name') 
     255        b = self.s3conn.create_bucket('openid.amp.fm') 
    256256        k = Key(b) 
    257257        k.key = '%s/trusted' % login 
     
    280280    def POST(self, *args, **kwargs): 
    281281        login = check_login(self.s3conn, self.mc, cherrypy.url()) 
    282         b = self.s3conn.create_bucket('openid.name') 
     282        b = self.s3conn.create_bucket('openid.amp.fm') 
    283283        k = Key(b) 
    284284        k.key = '%s/trusted' % login 
     
    320320                    # allow it in the future 
    321321                    if 'allow_forever' in kwargs: 
    322                         b = self.s3conn.create_bucket('openid.name') 
     322                        b = self.s3conn.create_bucket('openid.amp.fm') 
    323323                        k = Key(b) 
    324324                        k.key = '%s/trusted' % login 
     
    413413            login = extract_login(request.identity) 
    414414 
    415             b = self.s3conn.create_bucket('openid.name') 
     415            b = self.s3conn.create_bucket('openid.amp.fm') 
    416416            k = Key(b) 
    417417            k.key = login 
     
    452452            # We check to see if the trust root has already been 
    453453            # allowed by the user. If yes, we immediatly return the valid response 
    454             b = self.s3conn.create_bucket('openid.name') 
     454            b = self.s3conn.create_bucket('openid.amp.fm') 
    455455            k = Key(b) 
    456456            k.key = '%s/trusted' % login 
  • trunk/nuxleus/Web/Development/collaborate/index.page

    r4461 r4463  
    1111        <advice:current-location.label>your local scene</advice:current-location.label> 
    1212        <advice:map.feed>http://feed.amp.fm/2007/10/20/gigs.atom</advice:map.feed> 
     13        <advice:page.title>Collaborate</advice:page.title> 
    1314      </page:advice> 
    1415    </page:config> 
     
    1718        <head:include fileType="javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=@@google.maps.key@@" /> 
    1819      </page:head> 
    19       <page:body src="/page/output/body/search/base.xml" /> 
     20      <page:body src="/page/output/body/collaborate/base.xml" /> 
    2021    </page:output> 
    2122  </my:page> 
  • trunk/nuxleus/Web/Development/css/base.css

    r4450 r4463  
    165165#top-sub-nav { 
    166166    margin-left:.25em; 
     167    text-align:right; 
    167168} 
    168169#top-sub-nav li, #top-sub-nav a { 
  • trunk/nuxleus/Web/Development/js/calendar.js

    r4451 r4463  
    8585         
    8686        // add calendar to element to calendar Div 
    87         var calendarDiv = document.getElementById(popUpCal.calendarId); 
     87        var x = document.getElementById(popUpCal.calendarId); 
    8888        calendarDiv.innerHTML = html; 
    8989         
     
    204204    var coors = findPos(targetObj); 
    205205    moveObj.style.position = 'absolute'; 
    206     moveObj.style.top = coors[1]+20 + 'px'; 
    207     moveObj.style.left = coors[0] + 'px'; 
     206    moveObj.style.top = coors[1]+345 + 'px'; 
     207    moveObj.style.left = coors[0]+105 + 'px'; 
    208208} 
    209209 
    210210function findPos(obj) { 
    211211    var curleft = curtop = 0; 
    212     if (obj.offsetParent) { 
     212    /* if (obj.offsetParent) { */ 
    213213        curleft = obj.offsetLeft 
    214214        curtop = obj.offsetTop 
    215         while (obj = obj.offsetParent) { 
     215        /* while (obj = obj.offsetParent) { 
    216216            curleft += obj.offsetLeft 
    217217            curtop += obj.offsetTop 
    218         } 
    219     } 
     218        } */ 
     219    /* } */ 
    220220    return [curleft,curtop]; 
    221221} 
  • trunk/nuxleus/Web/Development/manage/index.page

    r4461 r4463  
    1111        <advice:current-location.label>your local scene</advice:current-location.label> 
    1212        <advice:map.feed>http://feed.amp.fm/2007/10/20/gigs.atom</advice:map.feed> 
     13        <advice:page.title>Manage</advice:page.title> 
    1314      </page:advice> 
    1415    </page:config> 
     
    1718        <head:include fileType="javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=@@google.maps.key@@" /> 
    1819      </page:head> 
    19       <page:body src="/page/output/body/search/base.xml" /> 
     20      <page:body src="/page/output/body/manage/base.xml" /> 
    2021    </page:output> 
    2122  </my:page> 
  • trunk/nuxleus/Web/Development/member/index.page

    r4456 r4463  
    1 <?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="/page/controller/atomictalk/base.xsl"?><my:session xmlns:my="http://xameleon.org/my"><my:page><page:config xmlns:page="http://atomictalk.org/page" src="/page/config/config.xml"><page:advice xmlns:advice="http://atomictalk.org/page/advice" xmlns:head="http://atomictalk.org/page/output/head"><advice:page-title xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">@@domain.label@@</advice:page-title><advice:location.label xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">amp.fm</advice:location.label><advice:base.theme xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">993300-999999</advice:base.theme><advice:current-location xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">@@base-uri@@/@@location@@</advice:current-location><advice:current-location.label xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">your local scene</advice:current-location.label><advice:map.feed xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">http://feed.amp.fm/2007/10/20/gigs.atom</advice:map.feed><advice:current.location>/member//</advice:current.location></page:advice></page:config><page:output xmlns:page="http://atomictalk.org/page"><page:head src="/page/output/head/base.xml"><page:include xmlns:page="http://atomictalk.org/page/output/head" fileType="javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=@@google.maps.key@@"/></page:head><page:body src="/page/output/body/m/base.xml"/></page:output></my:page></my:session> 
     1<?xml version="1.0" encoding="UTF-8"?> 
     2<?xml-stylesheet type="text/xsl" href="/page/controller/atomictalk/base.xsl"?> 
     3<my:session xmlns:my="http://xameleon.org/my"> 
     4  <my:page> 
     5    <page:config xmlns:page="http://atomictalk.org/page" src="/page/config/config.xml"> 
     6      <page:advice xmlns:advice="http://atomictalk.org/page/advice" xmlns:head="http://atomictalk.org/page/output/head"> 
     7        <advice:page-title xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">@@domain.label@@</advice:page-title> 
     8        <advice:location.label xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">amp.fm</advice:location.label> 
     9        <advice:base.theme xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">993300-999999</advice:base.theme> 
     10        <advice:current-location xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">@@base-uri@@/@@location@@</advice:current-location> 
     11        <advice:current-location.label xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">your local scene</advice:current-location.label> 
     12        <advice:map.feed xmlns:output="http://atomictalk.org/page/output" xmlns:body="http://atomictalk.org/page/output/body" xmlns:doc="http://atomictalk.org/feed/doc">http://feed.amp.fm/2007/10/20/gigs.atom</advice:map.feed> 
     13        <advice:current.location>/member/m.david/</advice:current.location> 
     14      </page:advice> 
     15    </page:config> 
     16    <page:output xmlns:page="http://atomictalk.org/page"> 
     17      <page:head src="/page/output/head/base.xml"> 
     18        <page:include xmlns:page="http://atomictalk.org/page/output/head" fileType="javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=@@google.maps.key@@"/> 
     19      </page:head> 
     20      <page:body src="/page/output/body/m/base.xml"/> 
     21    </page:output> 
     22  </my:page> 
     23</my:session> 
  • trunk/nuxleus/Web/Development/page/controller/atomictalk/base.xsl

    r4461 r4463  
    119119   
    120120  <xsl:template match="doc:nav"> 
     121  <li><a href="/">Home</a></li> 
    121122    <xsl:apply-templates select="$navigation//response:path/*" mode="navigation"/> 
    122123  </xsl:template> 
     
    330331        </li> 
    331332        <li class="list menu {@style}" id="{@id}"> 
    332           <a href="/signup/">Create Account</a> 
     333          <a href="http://openid.amp.fm/signup/">Create Account</a> 
    333334        </li> 
    334335      </xsl:when> 
    335336      <xsl:otherwise> 
     337        <!-- <li class="list menu {@style}"> 
     338          <a href="./home" title="Inbox">Home</a> 
     339        </li> 
    336340        <li class="list menu {@style}"> 
    337341          <a href="./inbox" title="Inbox">Inbox</a> 
     
    340344          <a href="./blog" title="Blog">Blog</a> 
    341345        </li> 
     346        <li class="list menu {@style}"> 
     347          <a href="./profile" title="Profile">Profile</a> 
     348        </li> --> 
    342349        <li class="list menu {@style}" id="{@id}"> 
    343           <a href="/gatekeeper/logout?uname={$session-name}&amp;status-code=303" title="Connected as {$session-name}">Logout</a> 
     350          <a href="/service/session/logout" title="Connected as {$session-name}">Logout</a> 
    344351        </li> 
    345352      </xsl:otherwise> 
  • trunk/nuxleus/Web/Development/page/view/form/event.xml

    r4456 r4463  
    11<?xml version="1.0" encoding="UTF-8"?> 
    2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    3     xmlns:atom="http://www.w3.org/2005/Atom" xmlns:app="http://www.w3.org/2007/app" 
    4     xmlns="http://www.w3.org/1999/xhtml" version="1.0" exclude-result-prefixes="atom app"> 
    5     <xsl:output method="xml" omit-xml-declaration="yes" indent="yes" /> 
    6     <xsl:template match="/"> 
    7         <div class="form" id="eventform"> 
    8             <h2>Add a new event</h2> 
    9             <form method="post" action="/service/atompub/event/comment/add/"> 
    10                 <table> 
    11                     <tr> 
    12                         <td>Name:</td> 
    13                         <td> 
    14                             <input type="text" name="name" id="name" /> 
    15                         </td> 
    16                     </tr> 
    17                     <tr> 
    18                         <td style="vertical-align:top;">Description:</td> 
    19                         <td> 
    20                             <textarea name="description" cols="50" rows="5" id="description"> 
    21                                 <xsl:text> </xsl:text> 
    22                             </textarea> 
    23                         </td> 
    24                     </tr> 
    25                     <tr> 
    26                         <td style="vertical-align:top;">Location:</td> 
    27                         <td> 
    28                             <input type="hidden" name="location" id="location" /> 
    29                             <div id="gmap" /> 
    30                             <h3>TODO: Create list of venues of Salt Lake City &amp; propagate on map for selection.</h3> 
    31                             <h3>TODO: For now we will use a dummy selector.</h3> 
    32                         </td> 
    33                     </tr> 
    34                     <tr> 
    35                         <td>Venue:</td> 
    36                         <td> 
    37                             <select name="venue" id="venue"> 
    38                                 <option value="blues">House of Blues</option> 
    39                                 <option value="jazz">Monks</option> 
    40                                 <option value="electronica">Dan's Place</option> 
    41                                 <option value="rock">Boom Boom Room</option> 
    42                                 <option value="funk">Joe's Bar &amp; Grill</option> 
    43                             </select> 
    44                         </td> 
    45                     </tr> 
    46                     <tr> 
    47                         <td>Genre:</td> 
    48                         <td> 
    49                             <select name="genre" id="genre"> 
    50                                 <option value="blues">Blues</option> 
    51                                 <option value="jazz">jazz</option> 
    52                                 <option value="electronica">Electronica</option> 
    53                                 <option value="rock">Rock</option> 
    54                                 <option value="funk">Funk</option> 
    55                                 <option value="hiphop">Hip-Hop</option> 
    56                             </select> 
    57                         </td> 
    58                     </tr> 
    59                     <tr> 
    60                         <td>Start date:</td> 
    61                         <td> 
    62                             <input type="text" name="startdate" class="calendarSelectDate" 
    63                                 id="startdate" /> 
    64                         </td> 
    65                     </tr> 
    66                     <tr> 
    67                         <td>End date:</td> 
    68                         <td> 
    69                             <input type="text" name="enddate" class="calendarSelectDate" 
    70                                 id="enddate" /> 
    71                         </td> 
    72                     </tr> 
    73                     <tr> 
    74                         <td>Genre:</td> 
    75                         <td> 
    76                             <select name="genre" id="genre"> 
    77                                 <option value="blues">Blues</option> 
    78                                 <option value="jazz">jazz</option> 
    79                                 <option value="electronica">Electronica</option> 
    80                                 <option value="rock">Rock</option> 
    81                                 <option value="funk">Funk</option> 
    82                                 <option value="hiphop">Hip-Hop</option> 
    83                             </select> 
    84                         </td> 
    85                     </tr> 
    86                     <tr> 
    87                         <td>Tags:</td> 
    88                         <td> 
    89                             <input type="text" name="tags" id="tags" /> 
    90                         </td> 
    91                     </tr> 
    92                     <tr> 
    93                         <td colspan="2"> 
    94                             <input type="submit" value="Go" /> 
    95                         </td> 
    96                     </tr> 
    97                 </table> 
    98             </form> 
    99         </div> 
    100         <div id="calendarDiv" /> 
    101     </xsl:template> 
    102 </xsl:stylesheet> 
     2<view:module class="base" id="instance" xmlns="http://www.w3.org/1999/xhtml" xmlns:geo="http://nuxleus.com/geo" xmlns:doc="http://atomictalk.org/feed/doc" xmlns:view="http://atomictalk.org/page/view"> 
     3  <div class="form" id="eventform"> 
     4    <h2>Add a new event</h2> 
     5    <form method="post" action="/service/atompub/event/comment/add/"> 
     6      <table id="events"> 
     7        <tr> 
     8          <td>Name:</td> 
     9          <td> 
     10            <input type="text" name="name" id="name" /> 
     11          </td> 
     12        </tr> 
     13        <tr> 
     14          <td style="vertical-align:top;">Description:</td> 
     15          <td> 
     16            <textarea name="description" cols="50" rows="5" id="description"> 
     17            </textarea> 
     18          </td> 
     19        </tr> 
     20        <tr> 
     21          <td style="vertical-align:top;">Location:</td> 
     22          <td> 
     23            <input type="hidden" name="location" id="location" /> 
     24            <div id="gmap" /> 
     25            <h3>TODO: Create list of venues of Salt Lake City &amp; propagate on map for selection.</h3> 
     26            <h3>TODO: For now we will use a dummy selector.</h3> 
     27          </td> 
     28        </tr> 
     29        <tr> 
     30          <td>Venue:</td> 
     31          <td> 
     32            <select name="venue" id="venue"> 
     33              <option value="blues">House of Blues</option> 
     34              <option value="jazz">Monks</option> 
     35              <option value="electronica">Dan's Place</option> 
     36              <option value="rock">Boom Boom Room</option> 
     37              <option value="funk">Joe's Bar &amp; Grill</option> 
     38            </select> 
     39          </td> 
     40        </tr> 
     41        <tr> 
     42          <td>Genre:</td> 
     43          <td> 
     44            <select name="genre" id="genre"> 
     45              <option value="blues">Blues</option> 
     46              <option value="jazz">jazz</option> 
     47              <option value="electronica">Electronica</option> 
     48              <option value="rock">Rock</option> 
     49              <option value="funk">Funk</option> 
     50              <option value="hiphop">Hip-Hop</option> 
     51            </select> 
     52          </td> 
     53        </tr> 
     54        <tr> 
     55          <td>Start date:</td> 
     56          <td> 
     57            <input type="text" name="startdate" class="calendarSelectDate" id="startdate" /> 
     58          </td> 
     59        </tr> 
     60        <tr> 
     61          <td>End date:</td> 
     62          <td> 
     63            <input type="text" name="enddate" class="calendarSelectDate" id="enddate" /> 
     64          </td> 
     65        </tr> 
     66        <tr> 
     67          <td>Genre:</td> 
     68          <td> 
     69            <select name="genre" id="genre"> 
     70              <option value="blues">Blues</option> 
     71              <option value="jazz">jazz</option> 
     72              <option value="electronica">Electronica</option> 
     73              <option value="rock">Rock</option> 
     74              <option value="funk">Funk</option> 
     75              <option value="hiphop">Hip-Hop</option> 
     76            </select> 
     77          </td> 
     78        </tr> 
     79        <tr> 
     80          <td>Tags:</td> 
     81          <td> 
     82            <input type="text" name="tags" id="tags" /> 
     83          </td> 
     84        </tr> 
     85        <tr> 
     86          <td colspan="2"> 
     87            <input type="submit" value="Go" /> 
     88          </td> 
     89        </tr> 
     90      </table> 
     91    </form> 
     92  </div> 
     93  <div id="calendarDiv" /> 
     94</view:module> 
  • trunk/nuxleus/Web/Development/page/view/menu/navigation/top-login.xml

    r4405 r4463  
    22<view:module type="application/atomictalk+xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:view="http://atomictalk.org/page/view" xmlns:doc="http://atomictalk.org/feed/doc"> 
    33  <view:container id="top-login" style="RtoL" type="xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:view="http://atomictalk.org/page/view"> 
    4         <!--<view:item base="@@current:whatsnew@@" style="selected" use-template="view:link"/> 
    5             <view:item base="@@host:blog@@" use-template="view:link"/> 
    6             <view:item base="@@host:login@@" use-template="view:link"/> 
    7             <view:item base="@@openid:signup@@" use-template="view:link"/> 
    8             <view:item base="@@host:help@@" use-template="view:link"/>--> 
    9 <!--     <view:item style="selected"> 
    10       <a href="@@base-uri@@/">What's New</a> 
    11     </view:item> 
    12     <view:item> 
    13       <a href="@@base-uri@@/blog/">amp.fm Blog</a> 
    14     </view:item> --> 
    15     <doc:session.openid href="/service/session/generate-request-guid" base-uri="@@base-uri@@"/> 
    16 <!--     <view:item> 
    17       <a href="/about">About</a> 
    18     </view:item> 
    19     <view:item> 
    20       <a href="/help">Help</a> 
    21     </view:item> --> 
     4    <doc:nav/> 
    225  </view:container> 
    236</view:module> 
  • trunk/nuxleus/Web/Development/page/view/menu/navigation/top-sub-nav.xml

    r4461 r4463  
    11<view:module id="top-sub-nav" type="application/atomictalk+xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:doc="http://atomictalk.org/feed/doc" xmlns:view="http://atomictalk.org/page/view"> 
    2   <view:container style="LtoR" type="xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:view="http://atomictalk.org/page/view"> 
     2  <view:container style="RtoL" type="xhtml" xmlns="http://www.w3.org/1999/xhtml" xmlns:view="http://atomictalk.org/page/view"> 
    33    <!-- <view:item id="associate-profile" src="/page/view/module/profile/associate-profile-name/base.xml" /> --> 
    4     <doc:nav/> 
     4    <doc:session.openid href="/service/session/generate-request-guid" base-uri="@@base-uri@@"/> 
    55  </view:container> 
    66</view:module> 
  • trunk/nuxleus/Web/Development/page/view/module/header/m/base.xml

    r4405 r4463  
    33  <view:container style="TtoB"> 
    44    <view:item id="top-login-module" style="width" src="/page/view/menu/navigation/top-login.xml"/> 
    5     <view:item id="top-sub-nav-module" style="width" src="/page/view/menu/navigation/top-sub-nav.xml"/> 
     5    <view:item id="top-sub-nav-module" style="width RtoL" src="/page/view/menu/navigation/top-sub-nav.xml"/> 
    66    <view:item id="get-plugged-in" style="width" src="/page/view/module/get-plugged-in.xml"/> 
    77    <view:item id="search-module" style="width" src="/page/view/search/base.xml"/> 
  • trunk/nuxleus/Web/Development/promote/index.page

    r4461 r4463  
    1111        <advice:current-location.label>your local scene</advice:current-location.label> 
    1212        <advice:map.feed>http://feed.amp.fm/2007/10/20/gigs.atom</advice:map.feed> 
     13        <advice:page.title>Promote</advice:page.title> 
    1314      </page:advice> 
    1415    </page:config> 
     
    1718        <head:include fileType="javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=@@google.maps.key@@" /> 
    1819      </page:head> 
    19       <page:body src="/page/output/body/search/base.xml" /> 
     20      <page:body src="/page/output/body/promote/base.xml" /> 
    2021    </page:output> 
    2122  </my:page> 
  • trunk/nuxleus/Web/Development/sell/index.page

    r4461 r4463  
    1111        <advice:current-location.label>your local scene</advice:current-location.label> 
    1212        <advice:map.feed>http://feed.amp.fm/2007/10/20/gigs.atom</advice:map.feed> 
     13        <advice:page.title>Sell</advice:page.title> 
    1314      </page:advice> 
    1415    </page:config> 
     
    1718        <head:include fileType="javascript" src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=@@google.maps.key@@" /> 
    1819      </page:head> 
    19       <page:body src="/page/output/body/search/base.xml" /> 
     20      <page:body src="/page/output/body/sell/base.xml" /> 
    2021    </page:output> 
    2122  </my:page> 
  • trunk/nuxleus/Web/Development/service/transform/controller/atompub/add/base.xslt

    r4431 r4463  
    8989 
    9090    <xsl:variable name="template"> 
    91       <xsl:apply-templates select="document(resolve-uri(concat($application-root, $member-dir-root, 'index.template')))/my:session"> 
     91      <xsl:apply-templates select="document(resolve-uri(concat($application-root, $member-dir-root, 'comment.template')))/my:session"> 
    9292        <xsl:with-param name="member-directory" select="$member-directory"/> 
    9393      </xsl:apply-templates>