You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@vcl.apache.org by Dmitri Chebotarov <dc...@gmu.edu> on 2012/08/17 19:52:16 UTC

Get RDP button in VCL 2.3

Hi

I'm trying to get 'Get RDP File' button visible for Windows reservations on VCL 2.3. I think VCL 2.3 is using dojo to generate the button - I see it briefly when I visit reservation page and then it goes away. I can see FORM code for the button in the page source, but button is not visible on the page. 

I would appreciate any advise.

--
Thank you,

Dmitri Chebotarov
Virtual Computing Lab Systems Engineer, TSD - Ent Servers & Messaging
223 Aquia Building, Ffx, MSN: 1B5
Phone: (703) 993-6175
Fax: (703) 993-3404





Re: Get RDP button in VCL 2.3

Posted by Dmitri Chebotarov <dc...@gmu.edu>.
Josh

Looks like commenting out 'usenls' lines in code.js breaks 'Block Allocation' request page (time selection doesn't work).
I've defined javascript variable usenls in page.php. This seems to be working fine.

Thank you.
--
Dmitri Chebotarov
Virtual Computing Lab Systems Engineer, TSD - Ent Servers & Messaging
223 Aquia Building, Ffx, MSN: 1B5
Phone: (703) 993-6175
Fax: (703) 993-3404


On Friday, August 17, 2012 at 15:07 , Josh Thompson wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Dmitri,
> 
> That's a bug. Instead of using "! usenls" to check for usenls being
> defined, I should have used "typeof usenls === 'undefined'". usenls is
> defined in the the default theme's page.php file. Anyone using a custom
> theme that didn't copy any new changes from the default theme in 2.3
> will see this problem. usenls is used for allowing the selection of a
> locale other than English.
> 
> You can either define the global javascript variable usenls in the
> header part of your page.php file, or you can leave the two lines
> commented out as you listed below.
> 
> Josh
> 
> On 08/17/12 14:50, Dmitri Chebotarov wrote:
> > Josh
> > 
> > I cleared the cash and made sure I was getting the correct version
> > of request.js. The problem was with undefined var 'usenls' in
> > code.js. I removed two lines referring to usenls:
> > 
> > function _(str) { // if(! usenls || ! (str in nlsmessages)) 
> > return str; // return nlsmessages[str]; }
> > 
> > Is 'usenls' used somewhere else?
> > 
> > Thanks.
> > 
> > 
> > On Aug 17, 2012, at 14:31 , Josh Thompson <josh_thompson@ncsu.edu (mailto:josh_thompson@ncsu.edu)> 
> > wrote:
> > 
> > Dmitri,
> > 
> > showRDPbutton from requests.js should be getting called to display 
> > the button. The idea is that it should be delayed slightly
> > because users that click it quickly will try to connect before the
> > firewall rules are applied, keeping them from being able to
> > connect. You can change the delay amount by changing the value of
> > timeInterval in that function.
> > 
> > If this is an upgraded version of VCL, it is possible that your 
> > browser is caching the old version of requests.js, which will be 
> > missing the showRDPbutton function.
> > 
> > You can use the firefox firebug extension to be able to view the 
> > actual javascript file being used on that page load.
> > 
> > Let me know what you find.
> > 
> > Josh
> > 
> > On 08/17/12 13:52, Dmitri Chebotarov wrote:
> > > > > Hi
> > > > > 
> > > > > I'm trying to get 'Get RDP File' button visible for Windows 
> > > > > reservations on VCL 2.3. I think VCL 2.3 is using dojo to 
> > > > > generate the button - I see it briefly when I visit
> > > > > reservation page and then it goes away. I can see FORM code
> > > > > for the button in the page source, but button is not visible
> > > > > on the page.
> > > > > 
> > > > > I would appreciate any advise.
> > > > > 
> > > > > -- Thank you,
> > > > > 
> > > > > Dmitri Chebotarov Virtual Computing Lab Systems Engineer, TSD
> > > > > - Ent Servers & Messaging 223 Aquia Building, Ffx, MSN: 1B5 
> > > > > Phone: (703) 993-6175 Fax: (703) 993-3404
> > > > 
> > > 
> > 
> 
> 
> - -- 
> - -------------------------------
> Josh Thompson
> VCL Developer
> North Carolina State University
> 
> my GPG/PGP key can be found at pgp.mit.edu
> 
> All electronic mail messages in connection with State business which
> are sent to or received by this account are subject to the NC Public
> Records Law and may be disclosed to third parties.
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v2.0.17 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
> 
> iEYEARECAAYFAlAuloMACgkQV/LQcNdtPQNtWwCdEIWo+Igy8G5+TAyxgN53krlg
> 7voAn1p62SoUtETuIXVFIA37j3P5Hx/k
> =dobi
> -----END PGP SIGNATURE-----




Re: Get RDP button in VCL 2.3

Posted by Dmitri Chebotarov <dc...@gmu.edu>.
Josh

Looks like commenting out 'usenls' lines in code.js breaks 'Block Allocation' request page (time selection doesn't work).
I've defined javascript variable usenls in page.php. This seems to be working fine.

Thank you.
--
Dmitri Chebotarov
Virtual Computing Lab Systems Engineer, TSD - Ent Servers & Messaging
223 Aquia Building, Ffx, MSN: 1B5
Phone: (703) 993-6175
Fax: (703) 993-3404


On Friday, August 17, 2012 at 15:07 , Josh Thompson wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Dmitri,
> 
> That's a bug. Instead of using "! usenls" to check for usenls being
> defined, I should have used "typeof usenls === 'undefined'". usenls is
> defined in the the default theme's page.php file. Anyone using a custom
> theme that didn't copy any new changes from the default theme in 2.3
> will see this problem. usenls is used for allowing the selection of a
> locale other than English.
> 
> You can either define the global javascript variable usenls in the
> header part of your page.php file, or you can leave the two lines
> commented out as you listed below.
> 
> Josh
> 
> On 08/17/12 14:50, Dmitri Chebotarov wrote:
> > Josh
> > 
> > I cleared the cash and made sure I was getting the correct version
> > of request.js. The problem was with undefined var 'usenls' in
> > code.js. I removed two lines referring to usenls:
> > 
> > function _(str) { // if(! usenls || ! (str in nlsmessages)) 
> > return str; // return nlsmessages[str]; }
> > 
> > Is 'usenls' used somewhere else?
> > 
> > Thanks.
> > 
> > 
> > On Aug 17, 2012, at 14:31 , Josh Thompson <josh_thompson@ncsu.edu (mailto:josh_thompson@ncsu.edu)> 
> > wrote:
> > 
> > Dmitri,
> > 
> > showRDPbutton from requests.js should be getting called to display 
> > the button. The idea is that it should be delayed slightly
> > because users that click it quickly will try to connect before the
> > firewall rules are applied, keeping them from being able to
> > connect. You can change the delay amount by changing the value of
> > timeInterval in that function.
> > 
> > If this is an upgraded version of VCL, it is possible that your 
> > browser is caching the old version of requests.js, which will be 
> > missing the showRDPbutton function.
> > 
> > You can use the firefox firebug extension to be able to view the 
> > actual javascript file being used on that page load.
> > 
> > Let me know what you find.
> > 
> > Josh
> > 
> > On 08/17/12 13:52, Dmitri Chebotarov wrote:
> > > > > Hi
> > > > > 
> > > > > I'm trying to get 'Get RDP File' button visible for Windows 
> > > > > reservations on VCL 2.3. I think VCL 2.3 is using dojo to 
> > > > > generate the button - I see it briefly when I visit
> > > > > reservation page and then it goes away. I can see FORM code
> > > > > for the button in the page source, but button is not visible
> > > > > on the page.
> > > > > 
> > > > > I would appreciate any advise.
> > > > > 
> > > > > -- Thank you,
> > > > > 
> > > > > Dmitri Chebotarov Virtual Computing Lab Systems Engineer, TSD
> > > > > - Ent Servers & Messaging 223 Aquia Building, Ffx, MSN: 1B5 
> > > > > Phone: (703) 993-6175 Fax: (703) 993-3404
> > > > 
> > > 
> > 
> 
> 
> - -- 
> - -------------------------------
> Josh Thompson
> VCL Developer
> North Carolina State University
> 
> my GPG/PGP key can be found at pgp.mit.edu
> 
> All electronic mail messages in connection with State business which
> are sent to or received by this account are subject to the NC Public
> Records Law and may be disclosed to third parties.
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v2.0.17 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
> 
> iEYEARECAAYFAlAuloMACgkQV/LQcNdtPQNtWwCdEIWo+Igy8G5+TAyxgN53krlg
> 7voAn1p62SoUtETuIXVFIA37j3P5Hx/k
> =dobi
> -----END PGP SIGNATURE-----




Re: Get RDP button in VCL 2.3

Posted by Josh Thompson <jo...@ncsu.edu>.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Dmitri,

That's a bug.  Instead of using "! usenls" to check for usenls being
defined, I should have used "typeof usenls === 'undefined'".  usenls is
defined in the the default theme's page.php file.  Anyone using a custom
theme that didn't copy any new changes from the default theme in 2.3
will see this problem.  usenls is used for allowing the selection of a
locale other than English.

You can either define the global javascript variable usenls in the
header part of your page.php file, or you can leave the two lines
commented out as you listed below.

Josh

On 08/17/12 14:50, Dmitri Chebotarov wrote:
> Josh
> 
> I cleared the cash and made sure I was getting the correct version
> of request.js. The problem was with undefined var 'usenls' in
> code.js. I removed two lines referring to usenls:
> 
> function _(str) { //      if(! usenls || ! (str in nlsmessages)) 
> return str; //      return nlsmessages[str]; }
> 
> Is 'usenls' used somewhere else?
> 
> Thanks.
> 
> 
> On Aug 17, 2012, at 14:31 , Josh Thompson <jo...@ncsu.edu> 
> wrote:
> 
> Dmitri,
> 
> showRDPbutton from requests.js should be getting called to display 
> the button.  The idea is that it should be delayed slightly
> because users that click it quickly will try to connect before the
> firewall rules are applied, keeping them from being able to
> connect.  You can change the delay amount by changing the value of
> timeInterval in that function.
> 
> If this is an upgraded version of VCL, it is possible that your 
> browser is caching the old version of requests.js, which will be 
> missing the showRDPbutton function.
> 
> You can use the firefox firebug extension to be able to view the 
> actual javascript file being used on that page load.
> 
> Let me know what you find.
> 
> Josh
> 
> On 08/17/12 13:52, Dmitri Chebotarov wrote:
>>>> Hi
>>>> 
>>>> I'm trying to get 'Get RDP File' button visible for Windows 
>>>> reservations on VCL 2.3. I think VCL 2.3 is using dojo to 
>>>> generate the button - I see it briefly when I visit
>>>> reservation page and then it goes away. I can see FORM code
>>>> for the button in the page source, but button is not visible
>>>> on the page.
>>>> 
>>>> I would appreciate any advise.
>>>> 
>>>> -- Thank you,
>>>> 
>>>> Dmitri Chebotarov Virtual Computing Lab Systems Engineer, TSD
>>>> - Ent Servers & Messaging 223 Aquia Building, Ffx, MSN: 1B5 
>>>> Phone: (703) 993-6175 Fax: (703) 993-3404
- -- 
- -------------------------------
Josh Thompson
VCL Developer
North Carolina State University

my GPG/PGP key can be found at pgp.mit.edu

All electronic mail messages in connection with State business which
are sent to or received by this account are subject to the NC Public
Records Law and may be disclosed to third parties.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAlAuloMACgkQV/LQcNdtPQNtWwCdEIWo+Igy8G5+TAyxgN53krlg
7voAn1p62SoUtETuIXVFIA37j3P5Hx/k
=dobi
-----END PGP SIGNATURE-----

Re: Get RDP button in VCL 2.3

Posted by Josh Thompson <jo...@ncsu.edu>.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Dmitri,

That's a bug.  Instead of using "! usenls" to check for usenls being
defined, I should have used "typeof usenls === 'undefined'".  usenls is
defined in the the default theme's page.php file.  Anyone using a custom
theme that didn't copy any new changes from the default theme in 2.3
will see this problem.  usenls is used for allowing the selection of a
locale other than English.

You can either define the global javascript variable usenls in the
header part of your page.php file, or you can leave the two lines
commented out as you listed below.

Josh

On 08/17/12 14:50, Dmitri Chebotarov wrote:
> Josh
> 
> I cleared the cash and made sure I was getting the correct version
> of request.js. The problem was with undefined var 'usenls' in
> code.js. I removed two lines referring to usenls:
> 
> function _(str) { //      if(! usenls || ! (str in nlsmessages)) 
> return str; //      return nlsmessages[str]; }
> 
> Is 'usenls' used somewhere else?
> 
> Thanks.
> 
> 
> On Aug 17, 2012, at 14:31 , Josh Thompson <jo...@ncsu.edu> 
> wrote:
> 
> Dmitri,
> 
> showRDPbutton from requests.js should be getting called to display 
> the button.  The idea is that it should be delayed slightly
> because users that click it quickly will try to connect before the
> firewall rules are applied, keeping them from being able to
> connect.  You can change the delay amount by changing the value of
> timeInterval in that function.
> 
> If this is an upgraded version of VCL, it is possible that your 
> browser is caching the old version of requests.js, which will be 
> missing the showRDPbutton function.
> 
> You can use the firefox firebug extension to be able to view the 
> actual javascript file being used on that page load.
> 
> Let me know what you find.
> 
> Josh
> 
> On 08/17/12 13:52, Dmitri Chebotarov wrote:
>>>> Hi
>>>> 
>>>> I'm trying to get 'Get RDP File' button visible for Windows 
>>>> reservations on VCL 2.3. I think VCL 2.3 is using dojo to 
>>>> generate the button - I see it briefly when I visit
>>>> reservation page and then it goes away. I can see FORM code
>>>> for the button in the page source, but button is not visible
>>>> on the page.
>>>> 
>>>> I would appreciate any advise.
>>>> 
>>>> -- Thank you,
>>>> 
>>>> Dmitri Chebotarov Virtual Computing Lab Systems Engineer, TSD
>>>> - Ent Servers & Messaging 223 Aquia Building, Ffx, MSN: 1B5 
>>>> Phone: (703) 993-6175 Fax: (703) 993-3404
- -- 
- -------------------------------
Josh Thompson
VCL Developer
North Carolina State University

my GPG/PGP key can be found at pgp.mit.edu

All electronic mail messages in connection with State business which
are sent to or received by this account are subject to the NC Public
Records Law and may be disclosed to third parties.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAlAuloMACgkQV/LQcNdtPQNtWwCdEIWo+Igy8G5+TAyxgN53krlg
7voAn1p62SoUtETuIXVFIA37j3P5Hx/k
=dobi
-----END PGP SIGNATURE-----

Re: Get RDP button in VCL 2.3

Posted by Dmitri Chebotarov <dc...@gmu.edu>.
Josh

I cleared the cash and made sure I was getting the correct version of request.js. 
The problem was with undefined var 'usenls' in code.js. I removed two lines referring to usenls:

function _(str) {
//      if(! usenls || ! (str in nlsmessages))
                return str;
//      return nlsmessages[str];
}

Is 'usenls' used somewhere else? 

Thanks.


On Aug 17, 2012, at 14:31 , Josh Thompson <jo...@ncsu.edu> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Dmitri,
> 
> showRDPbutton from requests.js should be getting called to display the
> button.  The idea is that it should be delayed slightly because users
> that click it quickly will try to connect before the firewall rules
> are applied, keeping them from being able to connect.  You can change
> the delay amount by changing the value of timeInterval in that function.
> 
> If this is an upgraded version of VCL, it is possible that your
> browser is caching the old version of requests.js, which will be
> missing the showRDPbutton function.
> 
> You can use the firefox firebug extension to be able to view the
> actual javascript file being used on that page load.
> 
> Let me know what you find.
> 
> Josh
> 
> On 08/17/12 13:52, Dmitri Chebotarov wrote:
>> Hi
>> 
>> I'm trying to get 'Get RDP File' button visible for Windows 
>> reservations on VCL 2.3. I think VCL 2.3 is using dojo to generate
>> the button - I see it briefly when I visit reservation page and 
>> then it goes away. I can see FORM code for the button in the page 
>> source, but button is not visible on the page.
>> 
>> I would appreciate any advise.
>> 
>> -- Thank you,
>> 
>> Dmitri Chebotarov Virtual Computing Lab Systems Engineer, TSD - Ent
>> Servers & Messaging 223 Aquia Building, Ffx, MSN: 1B5 Phone: (703)
>> 993-6175 Fax: (703) 993-3404
>> 
>> 
>> 
>> 
> 
> - -- 
> - -------------------------------
> Josh Thompson
> VCL Developer
> North Carolina State University
> 
> my GPG/PGP key can be found at pgp.mit.edu
> 
> All electronic mail messages in connection with State business which
> are sent to or received by this account are subject to the NC Public
> Records Law and may be disclosed to third parties.
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v2.0.17 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
> 
> iEYEARECAAYFAlAujfIACgkQV/LQcNdtPQN8sACeNs1Ta0BePalCBwhoXCy6LBmZ
> RVUAn1Dn6CGCEVTzjNQ/y0R2Jij1baII
> =UO/r
> -----END PGP SIGNATURE-----



--
Thank you,

Dmitri Chebotarov
Virtual Computing Lab Systems Engineer, TSD - Ent Servers & Messaging
223 Aquia Building, Ffx, MSN: 1B5
Phone: (703) 993-6175
Fax: (703) 993-3404





Re: Get RDP button in VCL 2.3

Posted by Dmitri Chebotarov <dc...@gmu.edu>.
Josh

I cleared the cash and made sure I was getting the correct version of request.js. 
The problem was with undefined var 'usenls' in code.js. I removed two lines referring to usenls:

function _(str) {
//      if(! usenls || ! (str in nlsmessages))
                return str;
//      return nlsmessages[str];
}

Is 'usenls' used somewhere else? 

Thanks.


On Aug 17, 2012, at 14:31 , Josh Thompson <jo...@ncsu.edu> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Dmitri,
> 
> showRDPbutton from requests.js should be getting called to display the
> button.  The idea is that it should be delayed slightly because users
> that click it quickly will try to connect before the firewall rules
> are applied, keeping them from being able to connect.  You can change
> the delay amount by changing the value of timeInterval in that function.
> 
> If this is an upgraded version of VCL, it is possible that your
> browser is caching the old version of requests.js, which will be
> missing the showRDPbutton function.
> 
> You can use the firefox firebug extension to be able to view the
> actual javascript file being used on that page load.
> 
> Let me know what you find.
> 
> Josh
> 
> On 08/17/12 13:52, Dmitri Chebotarov wrote:
>> Hi
>> 
>> I'm trying to get 'Get RDP File' button visible for Windows 
>> reservations on VCL 2.3. I think VCL 2.3 is using dojo to generate
>> the button - I see it briefly when I visit reservation page and 
>> then it goes away. I can see FORM code for the button in the page 
>> source, but button is not visible on the page.
>> 
>> I would appreciate any advise.
>> 
>> -- Thank you,
>> 
>> Dmitri Chebotarov Virtual Computing Lab Systems Engineer, TSD - Ent
>> Servers & Messaging 223 Aquia Building, Ffx, MSN: 1B5 Phone: (703)
>> 993-6175 Fax: (703) 993-3404
>> 
>> 
>> 
>> 
> 
> - -- 
> - -------------------------------
> Josh Thompson
> VCL Developer
> North Carolina State University
> 
> my GPG/PGP key can be found at pgp.mit.edu
> 
> All electronic mail messages in connection with State business which
> are sent to or received by this account are subject to the NC Public
> Records Law and may be disclosed to third parties.
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v2.0.17 (GNU/Linux)
> Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
> 
> iEYEARECAAYFAlAujfIACgkQV/LQcNdtPQN8sACeNs1Ta0BePalCBwhoXCy6LBmZ
> RVUAn1Dn6CGCEVTzjNQ/y0R2Jij1baII
> =UO/r
> -----END PGP SIGNATURE-----



--
Thank you,

Dmitri Chebotarov
Virtual Computing Lab Systems Engineer, TSD - Ent Servers & Messaging
223 Aquia Building, Ffx, MSN: 1B5
Phone: (703) 993-6175
Fax: (703) 993-3404





Re: Get RDP button in VCL 2.3

Posted by Josh Thompson <jo...@ncsu.edu>.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Dmitri,

showRDPbutton from requests.js should be getting called to display the
button.  The idea is that it should be delayed slightly because users
that click it quickly will try to connect before the firewall rules
are applied, keeping them from being able to connect.  You can change
the delay amount by changing the value of timeInterval in that function.

If this is an upgraded version of VCL, it is possible that your
browser is caching the old version of requests.js, which will be
missing the showRDPbutton function.

You can use the firefox firebug extension to be able to view the
actual javascript file being used on that page load.

Let me know what you find.

Josh

On 08/17/12 13:52, Dmitri Chebotarov wrote:
> Hi
> 
> I'm trying to get 'Get RDP File' button visible for Windows 
> reservations on VCL 2.3. I think VCL 2.3 is using dojo to generate
>  the button - I see it briefly when I visit reservation page and 
> then it goes away. I can see FORM code for the button in the page 
> source, but button is not visible on the page.
> 
> I would appreciate any advise.
> 
> -- Thank you,
> 
> Dmitri Chebotarov Virtual Computing Lab Systems Engineer, TSD - Ent
> Servers & Messaging 223 Aquia Building, Ffx, MSN: 1B5 Phone: (703)
> 993-6175 Fax: (703) 993-3404
> 
> 
> 
> 

- -- 
- -------------------------------
Josh Thompson
VCL Developer
North Carolina State University

my GPG/PGP key can be found at pgp.mit.edu

All electronic mail messages in connection with State business which
are sent to or received by this account are subject to the NC Public
Records Law and may be disclosed to third parties.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAlAujfIACgkQV/LQcNdtPQN8sACeNs1Ta0BePalCBwhoXCy6LBmZ
RVUAn1Dn6CGCEVTzjNQ/y0R2Jij1baII
=UO/r
-----END PGP SIGNATURE-----

Re: Get RDP button in VCL 2.3

Posted by Josh Thompson <jo...@ncsu.edu>.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Dmitri,

showRDPbutton from requests.js should be getting called to display the
button.  The idea is that it should be delayed slightly because users
that click it quickly will try to connect before the firewall rules
are applied, keeping them from being able to connect.  You can change
the delay amount by changing the value of timeInterval in that function.

If this is an upgraded version of VCL, it is possible that your
browser is caching the old version of requests.js, which will be
missing the showRDPbutton function.

You can use the firefox firebug extension to be able to view the
actual javascript file being used on that page load.

Let me know what you find.

Josh

On 08/17/12 13:52, Dmitri Chebotarov wrote:
> Hi
> 
> I'm trying to get 'Get RDP File' button visible for Windows 
> reservations on VCL 2.3. I think VCL 2.3 is using dojo to generate
>  the button - I see it briefly when I visit reservation page and 
> then it goes away. I can see FORM code for the button in the page 
> source, but button is not visible on the page.
> 
> I would appreciate any advise.
> 
> -- Thank you,
> 
> Dmitri Chebotarov Virtual Computing Lab Systems Engineer, TSD - Ent
> Servers & Messaging 223 Aquia Building, Ffx, MSN: 1B5 Phone: (703)
> 993-6175 Fax: (703) 993-3404
> 
> 
> 
> 

- -- 
- -------------------------------
Josh Thompson
VCL Developer
North Carolina State University

my GPG/PGP key can be found at pgp.mit.edu

All electronic mail messages in connection with State business which
are sent to or received by this account are subject to the NC Public
Records Law and may be disclosed to third parties.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.17 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAlAujfIACgkQV/LQcNdtPQN8sACeNs1Ta0BePalCBwhoXCy6LBmZ
RVUAn1Dn6CGCEVTzjNQ/y0R2Jij1baII
=UO/r
-----END PGP SIGNATURE-----