Astronet Поиск по астрономическим сайтам English Russian
       
        Точная форма слов   О проекте   Сайты   Справка
Найдено документов: 192510 (166 сайтов) ---- Время поиска: 0.48сек.   

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | След.

Показаны документы, содержащие фрагменты текста из документа
http://www.arcetri.astro.it/irlab/doc/library/javascript/clientguide/evnt.htm.

1. http://www.arcetri.astro.it/irlab/doc/library/javascript/clientreference/submit.htm
... A submit button on an HTML form. ... Client-side object . ... JavaScript 1.1: added type property; added onBlur and onFocus event handlers; added blur and focus methods . JavaScript 1.2: added handleEvent method The HTML INPUT tag, with "submit" as the value of the TYPE attribute. ... form . ... INPUT NAME="button1" TYPE="button" VALUE="Show Form Name" . ... For all Submit objects, the value of the type property is "submit" . ... INPUT TYPE="button" NAME="helpButton" VALUE="Help"> Submit.name . ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/javascript/clientreference/submit.htm -- 22.4 Кб -- 07.10.1999
Похожие документы

2. Handling Events
... JavaScript applications in the Navigator are largely event-driven. ... For your script to react to an event, you define event handlers , such as onChange and onClick . ... The event object, passed as an argument to each event handler and containing information about the event . ... In all versions of Navigator, you define an event handler (a JavaScript function or series of statements) to handle an event. ... The form contains a button with an onClick event handler that calls the compute function. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/JS/Guide/evnt.htm -- 26.7 Кб -- 12.12.1997
Похожие документы

3. Apache's Handler Use
What is a Handler . ... mod_actions . ... A "handler" is an internal Apache representation of the action to be performed when a file is called. Generally, files have implicit handlers, based on the file type. Normally, all files are simply served by the server, but certain file types are "handled" separately. Apache 1.1 adds the ability to use handlers explicitly. ... The following directives will enable the send-as-is handler, which is used for files which contain their own HTTP headers. ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/handler.html -- 7.2 Кб -- 15.10.2001
Похожие документы
Еще в разделе: (Показать все результаты (>116) - neptun.sai.msu.ru/ )

4. General purpose pop-ups
... In the example the element is used to request the name of a file to be written. ... Example program: /* example9.c -XT */ #include "stddef.h" #include "gipsyc.h" #include "cmain.h" #include "init.h" #include "finis.h" #include "userfio.h" #include "ggi.h" /* * Button keyword handler for quitting. */ static void quit(ident id, char *key, int code, void *arg) { bool button=toflog(FALSE); (void)userflog( , 1, 2, key, " "); if (tobool(button)) { wkeyf(key); /* reset button */ if (GgiVerify("Really quit?...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/pguide/gui-example9a.html -- 5.9 Кб -- 17.01.2009
Похожие документы

5. http://crydee.sai.msu.ru/ftproot/pub/rec/music/lyrics/cs-uwp/w/wang.chieh/readme
... A GB (GB1 and GB2) code is a two byte code, where the first byte is in the range $21-$77 (hexadecimal), and the second byte is in the range $21-$7E. A graphical ASCII character is a byte in the range $21-$7E. A non-graphical ASCII character is a byte in the range $0-$20 or of the value $7F. Since the range of a graphical ASCII character overlaps that of a GB byte, a byte in the range $21-$7E is interpreted according to the mode it is in. ... This code switches the mode from GB back to ASCII. ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/ftproot/pub/rec/music/lyrics/cs-uwp/w/wang.chieh/readme -- 7.6 Кб -- 26.03.1993
Похожие документы

6. Remote Windows
Motif and X-Windows . It is possible to execute a Motif application on a computer around the corner or around the world and redirect the input and output for the application to your workstation. There are files located on the Science Cluster to help you position and display windows from a remote VMS system. ... Copy two command files: . ... From one of the workstation windows, have the remote system execute the x command file and create the display on your workstation by using this command: . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/ftp/documents/system-docs/vms-guide/html/VUG_42.html -- 8.8 Кб -- 01.11.1995
Похожие документы

7. OptInt PmWiki : Url Approvals
OptInt PmWiki . ... PmWiki . ... This page explains how to discourage "link spamming" on your wiki site using PmWiki's urlapprove.php script. ... allowing you to limit the number of unapproved links that may be added to a page. ... The reason for this is that the approve mechanism only approves links on the current page. ... To see what link is to be approved without editing the page a tool tip can be displayed when the cursor hovers over the (approve links) link that displays the URL. e.g. Example . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/PmWiki/UrlApprovals -- 28.9 Кб -- 28.02.2014
Похожие документы

8. ESO - Request Handler FAQ
... Science . ... Science Users Information > Science Archive Facility > Request Handler FAQ . ... Data Handling and Products . ... ESO Data . ... Also, please double-check that you have entered correctly the full address of the service ( http://www.eso.org/requestHandler/pipacks ), including the leading triple w. Answer: The packages contain the raw data belonging to the selected run, the associated raw calibrations, the masters derived from them and the pipeline science products generated from them...
[ Сохраненная копия ]  Ссылки http://www.eso.org/sci/archive/requestHandlerFaq.html -- 36.3 Кб -- 09.04.2016
Похожие документы

9. Column
... Meta Index / Home Page / F90 DAL API / API Overview A column can be accessed and released again with the procedures . ... The following example illustrates how to change the values in a column. program modifyColumn use dal type(DataSetT) :: set type(TableT) :: tab type(ColumnT) :: col integer(kind=int32), dimension(:), pointer :: x set = dataSet("test.dat",Modify) tab = table(set,"test") col = column(tab,"x",0,0,Modify) x => int32Data(col) x = 124 call release(col) call release(set) end program . ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/7.1.0/doc/dal/node29.html -- 5.1 Кб -- 08.07.2007
Похожие документы
Еще в разделе: (Показать все результаты (>8867) - xmm.vilspa.esa.es/ )

10. Examples of interrupt handling
To use single quotes to inhibit command substitution: #!/bin/sh trap 'echo `pwd` >>$HOME/errdir' 2 3 15 for i in /bin /usr/bin /usr/any/bin do cd $i some series of commands in the directory $i done . The file errdir will contain the name of the directory being worked on when the procedure is interrupted. ... To remove temporary files when a procedure is interrupted: #!/bin/sh temp=/tmp/file.$$ trap 'rm $temp; exit' 0 1 2 3 15 ls > $temp .. ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.9.3.html -- 3.4 Кб -- 17.01.1997
Похожие документы

11. Spectrum
... spectrum . ... SPECTRUM will compute synthetic spectra, line profiles equivalent widths, specific intensities, assuming LTE, from model atmospheres of early-type stars. ... sterne models . file containing model atmosphere in 2006 Sterne format . ... T=25000, log g=4.0, vt=0, 1400-1415A. a) NLTE model atmosphere, spectrum computed with SYNSPECv25 (black). b) LTE model atmosphere, same linelist in converted format, spectrum computed with SPECTRUM (red) using this input file and this linelist . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/~csj/software_store/guide/spectrum.html -- 9.0 Кб -- 30.08.2007
Похожие документы

12. Doug Burke's Perl/S-Lang pages: Datatype examples
... Doug's Home Page . ... In the examples below we show a number of ways that data can be moved back and forth between S-Lang and Perl . ... Source code typeof : "undef"; __END__ __SLang__ variable foo = Any_Type [3]; foo[0] = "a string"; foo[1] = 23; define getfoo(x) { return foo[x]; } message( "In S-Lang:" ); vmessage( "typeof(foo[0]) = %s", string(typeof(foo[0])) ); vmessage( "typeof(foo[1]) = %s", string(typeof(foo[1])) ); vmessage( "typeof(foo[2]) = %s", string(typeof(foo[2])) ); . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~dburke/perl-slang/examples_datatypes.html -- 12.1 Кб -- 02.10.2012
Похожие документы

13. http://www.mccme.ru/ium/postscript/f09/topology3_04.ps
TOPOLOGY II ASSIGNMENT 4 (CELLULAR HOMOLOGY) Problem 4.1. Compute H # (M 2 g ), where M 2 g is the sphere with g handles. Problem 4.2. Compute H # (N 2 g ), where N 2 g is RP 2 with g handles. ... Consider the action of the group Z p with the generator # on the unit sphere S 3 # C 2 defined by #(z, w) = (exp( 2#i p ), exp( 2#iq p )). ... Compute H # (L(p, q) Problem 4.7. Compute H # (D), where D is the dunce hat, i.e., the triangle with the identifi­ cations shown by arrows. ...
[ Текст ]  Ссылки http://www.mccme.ru/ium/postscript/f09/topology3_04.ps -- 82.0 Кб -- 09.10.2009
Похожие документы

14. String Handling: <string.h>
... Basic String Handling Functions . ... Character conversions and testing: ctype.h . ... char *stpcpy ( const char *dest, const char *src) -- Copy one string into another. int strcmp( const char *string1, const char *string2) - Compare string1 and string2 to determine alphabetic order. char *strcpy( const char *string1, const char *string2) -- Copy string2 to stringl. char *strerror( int errnum) -- Get error message corresponding to specified error number ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node19.html -- 14.1 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node19.html -- 14.1 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node19.html -- 14.1 Кб -- 02.10.2012
Похожие документы

15. AstroAsciiData
... AstroAsciiData is a Python module to handle ASCII tables. ... The idea to develop this Python module emerged from the fact that ASCII tables continue to be one of the most popular and widely used data exchange formats in astronomy and probably science in general. ... To load this ASCII table, go into Python, load the AstroAsciiData module and read in the table with: . ... demo = asciidata.open('webexa.txt') . ... Users who only want to work with ASCII tables neeed no further python modules. ...
[ Сохраненная копия ]  Ссылки http://www.stecf.org/software/PYTHONtools/astroasciidata/ -- 13.6 Кб -- 09.04.2016
Похожие документы

16. http://www.naic.edu/~phil/hardware/ao19/rx001_cal_ctrl_cmd.pdf
AO19 Cal Controller - Commands Document No. RCV001, Rev. 001 AO19 Cal Controller - Commands Luis Quintero, Arecib o Observatory 1 Intro duction Example: >> << >> << >> << CAL? calm0000000 CALS01 calok CAL? calm1000000 All the commands must start with the same initials (CAL - case sensitive) and followed by the command letter, and options, if required. The examples below show commands from the computer to the device >>, and the device response <<. ...
[ Текст ]  Ссылки http://www.naic.edu/~phil/hardware/ao19/rx001_cal_ctrl_cmd.pdf -- 110.9 Кб -- 19.07.2013
Похожие документы

17. THE HUBBLE LAW JAVA APPLET
These are very prominent absorption lines is most all galaxies. ... These pair of absorption lines will appear in all the spectra and they should be your principle source for determining the redshift. ... When this applet opens you will see an iconic representation of galaxies in the left hand side of the applet and a target area in the right side of the applet. ... Note: What you are doing in this excercise is identical to what Hubble did in the 1920's and you are using the same galaxies. ...
[ Сохраненная копия ]  Ссылки http://zebu.uoregon.edu/2002/ph123/hub.html -- 5.5 Кб -- 09.07.2001
Похожие документы

18. IDL programs
Starting PROFILES you just click on the "FILE-LOAD" button. By "BROWSE" buttons you choose the profiles you want to use. Note : Times when the profiles were taken must be contained in the end of the file name (e.g. "p082023.fts", "prof082023.fts", "082023.fts") and the files must be fts files obtained for example in XLOOK. You are supposed to choose the profiles in the right order according to the time. ... RANGE" button: ranges of axes . TITLE" button: titles of axes . ...
[ Сохраненная копия ]  Ссылки http://lnfm1.sai.msu.ru/~kupry/SOFTWARE/profiles.html -- 2.6 Кб -- 11.08.2003
Похожие документы
Еще в разделе: (Показать все результаты (>186) - lnfm1.sai.msu.ru/ )

19. Lesson 2: Data Handling with Python
Python and the necessary libraries is already installed on all ANU information commons computers. ... Installation instructions are given in the reference guide below. Reference Guide for Python Data Handling . Reference links . Enthought Canopy - the easiest way to get Python with all necessary packages . ... Note that in Canopy, you set the working directory as described in the python reference notes above - otherwise it won't find the data. Back Main Data Handling Page . ...
[ Сохраненная копия ]  Ссылки http://www.mso.anu.edu.au/pfrancis/labskills/datahandling/lesson2.html -- 3.3 Кб -- 28.02.2014
Похожие документы

20. Writing an Actor Using twistedActor
This manual describes the details of writing an actor based on twistedActor. ... Thus, to the extent that the underlying hardware controllers support it, an actor based on twistedActor can execute multiple commands at the same time. ... One thing to keep in mind while writing your device code is: which actor commands can the device handle directly? ... Actor contains the list of devices your actor controls and code to execute certain commands called "local commands". ... Execute the command . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/twistedActor/writingAnActor.html -- 11.3 Кб -- 29.08.2014
Похожие документы

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | След.


Астронет | Научная сеть | ГАИШ МГУ | Поиск по МГУ | О проекте | Авторам

Комментарии, вопросы? Пишите: info@astronet.ru или сюда

Rambler's Top100 RFBR Яндекс цитирования