T.R | Title | User | Personal Name | Date | Lines |
---|
2882.1 | Long time ago | UTRTSC::SCHOLLAERT | You name, we support it... | Fri Jun 18 1993 10:42 | 63 |
| Hum,
Sounds familiar. Have a look at this...
$!----------------------------------------------------------------------
$! VTX.COM October 1986 Vidyut Desai
$! This is the command procedure used to invoke videotex from the
$! VTX.SCP script.
$! January 1992 MJG
$! Modified for the VTX V5.1 client
$!
$!----------------------------------------------------------------------
$!
$! shut up
$!
$ mess = f$environment("MESSAGE")
$ set message/nofac/nosev/noid/notext
$!
$! assign sys$input back to the terminal for VTX
$!
$ assign/user 'f$logical("SYS$OUTPUT")' SYS$INPUT
$ assign/user 'f$logical("SYS$OUTPUT")' TT
$! ADD code for ALL-IN-1 scratchpad
$ define /job a1vtx "TRUE"
$! END code for ALL-IN-1 scratchpad
$ vtx/init=vtx$library:vtxallin1.ini
$! ADD code for ALL-IN-1 scratchpad
$ deass /job a1vtx
$! END code for ALL-IN-1 scratchpad
$!
$ END:
$ set message 'mess'
$ exit
$!
===========================================================================
! OA$APPL_SPMENU.SCP
!
! Created: 23-Sep-1986 Vidyut Desai
!
! Standard ALL-IN-1 Interface to call the scratch pad.
!
! add code for VTX 5.1
.if LOG$A1VTX EQS "TRUE" and -
OA$DIR:"[]*.*".%WHOLE["PASTE.TMP"] NES "" -
then append "paste.tmp" "paste.tmp.-1" \ -
rename "paste.tmp" "pastevtx.tmp" \ -
purge pastevtx.tmp,3
! Remove next "!" to disable the display of the Scratchpad Screen
! .exit
! end code for VTX 5.1
get #sp_type_ahead = oa$menu_remainder
get oa$menu_remainder = ""
oa$menu_level_push\clear
get oa$menu_remainder = #sp_type_ahead
form oa$clear/pre="form spmenu"
close_prior\clear form
.exit
!
|
2882.2 | the fix | RDGENG::POVEY | Tom, REO-D3/3G, DTN: 830-4263 | Fri Jun 18 1993 12:54 | 14 |
| the fix is actually simpler than -.1
in vtx.com, add the line:
$ define videotex oauser:paste.tmp/nolog
before running VTX/ini=....
You should be aware that the integration between ALL-IN-1 and VTX is
undergoing some improvements right now. The next field test kit of
VTX will contain the updated files. This is V5.2 FT5 and is expected
next week.
Tom
|
2882.3 | OA$APPL_SPMENU.SCP - OA$PRVAPP needed? | COPCLU::ELIN | Elin Christensen @DMO, DTN 857-2406 | Tue Aug 31 1993 10:19 | 19 |
|
When activating the scratch pad from VTX, VTX calls
OA$DO:OA$APPL_SPMENU.SCP, but only programmers have access to that
script, and unprivileged users get an error message when exiting VTX.
Directory A1$DISK:[ALLIN1.DO_SHARE]
OA$APPL_SPMENU.SCP;1
[ALLIN1] (RWED,RWED,,)
(IDENTIFIER=OA$PRVAPP,ACCESS=READ)
Why don't unprivileged users have access to OA$APPL_SPMENU.SCP ?
The content of the script is almost identical with named data for
OA$_MO_SCRATCH_PAD in form DEFAULT.
Are there any reasons for not having WORLD READ access on
OA$APPL_SPMENU.SCP?
Elin
|
2882.4 | | SIOG::T_REDMOND | Thoughts of an Idle Mind | Tue Aug 31 1993 11:40 | 5 |
| There's no reason for people to access scripts in the DO area. These
should be compiled into the TXL, and VTX should be calling
OA$APPL_SPMENU.SCP rather than stating the explicit OA$DO.
T
|