Initial add of defaria.com
[clearscm.git] / defaria.com / blogs / Status / archives / 000665.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" id="sixapart-standard">
4 <head>
5    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6    <meta name="generator" content="Movable Type 5.2.3" />
7
8    <link rel="stylesheet" href="http://defaria.com/blogs/Status/styles-site.css" type="text/css" />
9    <link rel="alternate" type="application/atom+xml" title="Atom" href="http://defaria.com/blogs/Status/atom.xml" />
10    <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://defaria.com/blogs/Status/index.xml" />
11
12    <title>Status for Andrew DeFaria: ucmwb 1.2.3</title>
13
14    <link rel="start" href="http://defaria.com/blogs/Status/" title="Home" />
15    <link rel="prev" href="http://defaria.com/blogs/Status/archives/000664.html" title="ucmwb/Purify" />
16    <link rel="next" href="http://defaria.com/blogs/Status/archives/000666.html" title="UCMWB Assistant" />
17
18    <!--
19 <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
20          xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
21          xmlns:dc="http://purl.org/dc/elements/1.1/">
22 <rdf:Description
23     rdf:about="http://defaria.com/blogs/Status/archives/000665.html"
24     trackback:ping="http://defaria.com/mt/mt-tb.cgi/52"
25     dc:title="ucmwb 1.2.3"
26     dc:identifier="http://defaria.com/blogs/Status/archives/000665.html"
27     dc:subject="General Dynamics"
28     dc:description=" Fixed all ucmwb issues except for the Linux port - still waiting for Oracle Client Libraries and SDK for Linux..."
29     dc:creator=""
30     dc:date="2007-08-21T13:46:16-06:00" />
31 </rdf:RDF>
32 -->
33
34
35    
36
37    <script type="text/javascript" src="http://defaria.com/blogs/Status/mt-site.js"></script>
38 </head>
39 <body class="layout-one-column" onload="individualArchivesOnLoad(commenter_name)">
40    <div id="container">
41       <div id="container-inner" class="pkg">
42
43          <div id="banner">
44             <div id="banner-inner" class="pkg">
45                <h1 id="banner-header"><a href="http://defaria.com/blogs/Status/" accesskey="1">Status for Andrew DeFaria</a></h1>
46                <h2 id="banner-description">Searchable status reports and work log</h2>
47             </div>
48          </div>
49
50          <div id="pagebody">
51             <div id="pagebody-inner" class="pkg">
52                <div id="alpha">
53                   <div id="alpha-inner" class="pkg">
54
55                      <p class="content-nav">
56                         <a href="http://defaria.com/blogs/Status/archives/000664.html">&laquo; ucmwb/Purify</a> |
57                         <a href="http://defaria.com/blogs/Status/">Main</a>
58                         | <a href="http://defaria.com/blogs/Status/archives/000666.html">UCMWB Assistant &raquo;</a>
59                      </p>
60
61                      <a id="a000665"></a>
62                      <div class="entry" id="entry-665">
63                         <h3 class="entry-header">ucmwb 1.2.3</h3>
64                         <div class="entry-content">
65                            <div class="entry-body">
66                               <ul>
67   <li>Fixed all ucmwb issues except for the Linux port - still waiting for Oracle Client Libraries and SDK for Linux</li>
68 </ul>
69                            </div>
70                            <div id="more" class="entry-more">
71                               <h3>UCMWB 1.2.3</h3>
72
73 <p>I've fixed several issues with ucmwb and feel that it might be time to release a new ucmwb. This has caused me to look into how ucmwb works <i>out in the wild</i>.. From what I can tell there are the following "bits":</p>
74
75 <ul>
76   <li>ucmwb is invoked via /usr/local/bin/ucmwb, which is a simple tcsh script that calls /prj/muosran/bin/ucmwb<br>
77     <br>
78     <div class=code><pre>
79  #! /usr/bin/tcsh
80
81 /prj/muosran/bin/ucmwb&amp;
82
83 exit</pre>
84     </pre></div>
85   </li>
86
87   <li>/prj/muosran/bin/ucmwb is a symlink to <br>
88 /cleartrig/ent/SNSD/muos/ccadm_tools/vobs/ranccadm/devtools/ucmWorkbench/build/ucmwb</li>
89 </ul>
90
91 <p>With the advent of ucmwb for Linux we need to change things so that the script at /usr/local/bin/ucmwb is smart enough to invoke the correct executable. First I propose that we name the executable as ucmwb.$(uname -s). Next we replace  /usr/local/bin/ucmwb with the following script:</p>
92
93 <div class=code><pre>
94 #!/usr/bin/env bash
95 dir=/prj/muosran/bin
96 arch=$(uname -s)
97 ucmwb=$dir/ucmwb.$arch
98
99 if [ -x $ucmwb ]; then
100   exec $ucmwb $@
101 else
102   echo "Unable to find ucmwb for $arch"
103   exit 1
104 fi
105 </pre></div>
106
107 <p>The following tickets have been addressed in this release:</p>
108
109 <table align="center" border="1" cellpadding="2" cellspacing="0" width="95%">
110   <tbody>
111     <tr>
112       <th bgcolor="#004e98" valign="top"><font color="#ffffff">#</font></th>
113       <th bgcolor="#004e98" valign="top"><font color="#ffffff">ID</font></th>
114       <th bgcolor="#004e98" valign="top"><font color="#ffffff">Headline</font></th>
115     </tr>
116     <tr>
117       <td align="center" bgcolor="#ffffd7" valign="middle"><font color="#804040">1</font></td>
118       <td align="center" bgcolor="#ffffd7" valign="middle"><font  color="#804040">RANCQ00014268</font></td>
119       <td bgcolor="#ffffd7" valign="middle"><font color="#804040">UCMWB Save Activity List improvements</font></td>
120     </tr>
121     <tr>
122       <td align="center" bgcolor="#ece9d8" valign="middle"><font  color="#004e98">2</font></td>
123       <td align="center" bgcolor="#ece9d8" valign="middle"><font
124  color="#004e98">RANCQ00014402</font></td>
125       <td bgcolor="#ece9d8" valign="middle"><font color="#004e98">UCMWB
126 should unset activity before deleting the view
127       </font></td>
128     </tr>
129     <tr>
130       <td align="center" bgcolor="#ffffd7" valign="middle"><font color="#804040">3</font></td>
131       <td align="center" bgcolor="#ffffd7" valign="middle"><font
132  color="#804040">RANCQ00013782</font></td>
133       <td bgcolor="#ffffd7" valign="middle"><font color="#804040">ucmwb
134 defect - does not delete view when rebase pending</font></td>
135     </tr>
136     <tr>
137       <td align="center" bgcolor="#ece9d8" valign="middle"><font
138  color="#004e98">4</font></td>
139       <td align="center" bgcolor="#ece9d8" valign="middle"><font
140  color="#004e98">RANCQ00012828</font></td>
141       <td bgcolor="#ece9d8" valign="middle"><font color="#004e98">Fix
142 shared stream view creation from UCM Workbench.</font></td>
143     </tr>
144     <tr>
145       <td align="center" bgcolor="#ffffd7" valign="middle"><font
146  color="#804040">5</font></td>
147       <td align="center" bgcolor="#ffffd7" valign="middle"><font
148  color="#804040">RANCQ00011424</font></td>
149       <td bgcolor="#ffffd7" valign="middle"><font color="#804040">UCM
150 Workbench doesn't create the correct stream for Target WORs</font></td>
151     </tr>
152     <tr>
153       <td align="center" bgcolor="#ece9d8" valign="middle"><font
154  color="#004e98">6</font></td>
155       <td align="center" bgcolor="#ece9d8" valign="middle"><font
156  color="#004e98">RANCQ00011414</font></td>
157       <td bgcolor="#ece9d8" valign="middle"><font color="#004e98">UCMWB
158 create view with common target dev WOR incorrectly creates new stream</font></td>
159     </tr>
160     <tr>
161       <td align="center" bgcolor="#ffffd7" valign="middle"><font
162  color="#804040">7</font></td>
163       <td align="center" bgcolor="#ffffd7" valign="middle"><font
164  color="#804040">RANCQ00010523</font></td>
165       <td bgcolor="#ffffd7" valign="middle"><font color="#804040">UCM
166 Workbench - View Browser - Copy View Privates - Preserve Modification
167 Times</font></td>
168     </tr>
169     <tr>
170       <td align="center" bgcolor="#ece9d8" valign="middle"><font
171  color="#004e98">8</font></td>
172       <td align="center" bgcolor="#ece9d8" valign="middle"><font
173  color="#004e98">RANCQ00013592</font></td>
174       <td bgcolor="#ece9d8" valign="middle"><font color="#004e98">Execute
175 'cade' command when opening Unix prompt from WorkBench</font></td>
176     </tr>
177     <tr>
178       <td align="center" bgcolor="#ffffd7" valign="middle"><font
179  color="#804040">9</font></td>
180       <td align="center" bgcolor="#ffffd7" valign="middle"><font
181  color="#804040">RANCQ00010457</font></td>
182       <td bgcolor="#ffffd7" valign="middle"><font color="#804040">Suggestion
183 to improve UCM workbench to help with Rebase activity</font></td>
184     </tr>
185     <tr>
186       <td align="center" bgcolor="#ece9d8" valign="middle"><font color=#004e98">10</font></td>
187       <td align=center bgcolor="#ece9d8" valign="middle"><font color="#004e98">RANCQ00014267</font></td>
188       <td bgcolor="#ece9d8" valign="middle"><font color="#004e98">UCMWB
189 should save Clearquest password so it doesn't need to be constantly
190 specified</font></td>
191     </tr>
192   </tbody>
193 </table>
194 <br>
195
196 <h3>Notes:</h3>
197
198 <ol>
199   <li><b>RANCQ00014268:</b> Only part of Save Activities is fixed. If the user cancels the dialog box it no longer complains about not being able to write to a file. The part about adding .html is more problematic than initially anticipated.</li>
200
201   <li><b>RANCQ00013782:</b> When deleting a view, stderr from the cleartool rmview is now displayed if there were any errors. This covers both the rebase problem and deliver problem...</li>
202
203   <li><b>RANCQ00013592: </b>Decided not to implement this</li>
204
205   <li><b>RANCQ00010457:</b> This would be better handled by Tom's rebase trigger.</li>
206
207   <li><b>RANCQ00014267:</b> Clearquest password is saved for the duration of the ucmwb session. Storing the Clearquest password in preferences might be a security concern.</li>
208
209 </ol>
210                            </div>
211                         </div>
212                         <p class="entry-footer">
213                            <span class="post-footers">Posted by  on August 21, 2007  1:46 PM</span> <span class="separator">|</span> <a class="permalink" href="http://defaria.com/blogs/Status/archives/000665.html">Permalink</a>
214                         </p>
215                      </div>
216
217                      
218                      <div class="trackbacks">
219                         <h3 id="trackback" class="trackbacks-header">TrackBack</h3>
220                         <div id="trackbacks-info">
221                            <p>TrackBack URL for this entry:<br />http://defaria.com/mt/mt-tb.cgi/52</p>
222                         </div>
223                         <div class="trackbacks-content">
224                            
225                         </div>
226                      </div>
227                      
228
229                      
230                   </div>
231                </div>
232             </div>
233          </div>
234       </div>
235    </div>
236 </body>
237 </html>