Changeset 7483


Ignore:
Timestamp:
11/24/06 01:02:41 (5 years ago)
Author:
sam
Message:
  • modif gestion appNameFull - pour avoir appNameFull également pour SCtest
  • Correction bug création chrome SCtest (mix entre chrome audio et overlay SCtest)
  • correction pb de profil SCtest (SCtest ne peut pas avoir le même profil que SCbuilder) : profil SCtest = t + profil(SCb)
Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Bui_Core/properties.xml

    r7474 r7483  
    4444        <!-- property auto construites : valeurs par défaut --> 
    4545        <property name="app.name(shortName)" value="${app.name}"/> 
    46         <property name="app.name(fullName)" value="${app.name}${app.version(major)}.${app.version(medium)}"/> 
     46        <property name="app.name(fullName)" value="${app.name} ${app.version(major)}.${app.version(medium)}"/> 
    4747        <property name="app.name(id)" value="${app.name}"/> 
    4848        <property name="app.profile(name)" value="${app.name(id)}.${app.version(major)}.${app.version(medium)}"/> 
  • trunk/Bui_Core/xBuildClient.xml

    r7474 r7483  
    654654                <concat fixlastline="yes" append="false" destfile="${brandingDir}/brand.dtd${app.dynFileExtension}"><![CDATA[ 
    655655                        <!ENTITY  brandShortName        "${pAppName}"> 
    656                         <!ENTITY  brandFullName         "${app.name(fullName)}">             
     656                        <!ENTITY  brandFullName         "${pAppNameFull}">             
    657657                        <!ENTITY  vendorShortName       "${app.publisher}"> 
    658658                        <!ENTITY  releaseURL            "${app(url)}"> 
     
    662662                <concat fixlastline="yes" append="false" destfile="${brandingDir}/brand.properties${app.dynFileExtension}"><![CDATA[ 
    663663                        brandShortName=${pAppName} 
    664                         brandFullName=${app.name(fullName)} 
     664                        brandFullName=${pAppNameFull} 
    665665                        vendorShortName=${app.publisher} 
    666666                        copyright=${app.copyright} 
  • trunk/Bui_scBuilder/build.xml

    r7447 r7483  
    187187 
    188188                        <property name="pAppName" value="${app.name}"/> 
     189                        <property name="pAppNameFull" value="${app.name(fullName)}"/> 
    189190                        <property name="pProfileName" value="${app.profile(name)}"/> 
    190191                        <property name="pAppId" value="${app.id}"/> 
     
    284285                         
    285286                        <property name="pAppName" value="${sctest.name}"/> 
    286                         <property name="pProfileName" value="${app.profile(name)}"/> 
     287                        <property name="pAppNameFull" value="${sctest.name} ${app.version(major)}.${app.version(medium)}"/> 
     288                        <property name="pProfileName" value="t${app.profile(name)}"/> 
    287289                        <property name="pAppId" value="${sctest.id}"/> 
    288290                </ant> 
     
    320322                <ant target="createChrome"> 
    321323                        <property name="pDestChromeDir" value="${destsctestchromedir}"/> 
    322                         <property name="pChromeName" value="scenaricmstest"/> 
     324                        <property name="pChromeName" value="scenaricmsaudio"/> 
    323325                        <property name="pPathXulProject" value="${wspdir}/Xul_CmsAudio"/> 
    324326                </ant> 
  • trunk/Bui_scChain/build.xml

    r7065 r7483  
    177177 
    178178                        <property name="pAppName" value="${app.name}"/> 
     179                        <property name="pAppNameFull" value="${app.name(fullName)}"/> 
    179180                        <property name="pProfileName" value="${app.profile(name)}"/> 
    180181                        <property name="pAppId" value="${app.id}"/> 
  • trunk/Xul_Cms/content/scenaricms/about/about.xul

    r6394 r7483  
    4646 
    4747<?xml-stylesheet href="chrome://scenaricms/content/about/about.css" type="text/css"?> 
    48 <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="aboutDialog" buttons="accept" defaultButton="accept" title="&brandShortName;" width="300" height="320" onload="init();"> 
     48<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="aboutDialog" buttons="accept" defaultButton="accept" title="&brandFullName;" width="300" height="320" onload="init();"> 
    4949        <script src="chrome://scenaricms/content/ut.js"/> 
    5050        <script><![CDATA[ 
     
    9898                                <label class="infoName" value="Contact"/> 
    9999                                <box> 
    100                                         <label class="text-link" value="www.scenari-platform.org" onclick="ut.loadExternalURL('http://www.scenari-platform.org')"/> 
     100                                        <label class="text-link" value="&vendorShortName;" onclick="ut.loadExternalURL('&releaseURL;')"/> 
    101101                                </box> 
    102102                        </row> 
  • trunk/Xul_CmsChain/content/scenaricmschain/overideDeskWsp.xul

    r6240 r7483  
    4545--> 
    4646<overlay id="SCENARIchain" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
    47         <window id="scenaricms" title="&brandShortName;"/> 
     47 
    4848</overlay> 
  • trunk/Xul_CmsClient/content/scenaricmsclient/overideDeskWsp.xul

    r5102 r7483  
    4545--> 
    4646<overlay id="SCENARIclient" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
    47         <window id="scenaricms" title="&brandShortName;"/> 
    4847        <menubar id="oMainMenus"> 
    4948                <menu id="oMenusOutilsFile" insertbefore="oMenusHelpFile" label="Outils" accesskey="t"> 
  • trunk/Xul_CmsTest/content/scenaricmstest/overideDeskWsp.xul

    r6559 r7483  
    11<?xml version="1.0" encoding="ISO-8859-1"?> 
     2<!DOCTYPE window [ 
     3  <!ENTITY % appDtd SYSTEM "chrome://branding/locale/brand.dtd"> 
     4  %appDtd; 
     5]> 
    26<!-- 
    37/* 
     
    4145--> 
    4246<overlay id="SCENARItest" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 
    43         <window id="scenaricms" title="SCENARItest"/> 
    4447        <keyset id="keyset"> 
    4548                <key id="key_openConfig" key="k" modifiers="control shift" command="cmd_openConfig"/> 
Note: See TracChangeset for help on using the changeset viewer.