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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.sao.ru/cats/~satr/JS/REF/script2.htm.

1. HTML Tag Reference
... This section discusses the tags for defining scripts in a document. Scripts allow you to include JavaScript code in your HTML documents. ... The SCRIPT tag specifies client-side JavaScript code, which means JavaScript code that runs directly in the browser. ... For example, the browser interprets text within angle brackets as a script element, not as an HTML element. ... You can also use SCRIPT tags in the body of your document to define JavaScript code to be executed in that part of the document. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/JS/REF/tags13.htm -- 10.7 Кб -- 26.03.1998
Похожие документы

2. Stellarium: Scripting Engine
Stellarium 0.12.3 . ... Classes . ... Scripting . ... Scripting Engine . ... Script Console . ... Since version 0.10.1, Stellarium includes a scripting feature based on the Qt Scripting Engine . ... Prior to version 0.10.0, Stellarium used a different scripting engine called StratoScript . ... Prior to version 0.10.0, Stellarium had a simple scripting engine, known as StratoScript . ... This script prints "Hello Universe" in the Script Console output window. core.debug( "Hello Universe" ); . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/scripting.html -- 11.5 Кб -- 28.02.2014
Похожие документы
Еще в разделе: (Показать все результаты (>1511) - astro.uni-altai.ru/ )

3. TUI:Scripts:Scripting Tutorial:User Input
This example shows how to add a few input widgets to a script and how to get data from them. This is a fairly artificial example in that one would normally just use the DIS Expose window for this purpose. ... import RO.Wdg import Tkinter import TUI .Inst.ExposeModel as ExposeModel from TUI .Inst.ExposeStatusWdg import ExposeStatusWdg class ScriptClass(object): Take a series of DIS darks with user input . def __init__(self, sr): Display exposure status and a few user input ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/35m_operations/TUI/Scripts/ScriptingTutorial/UserInput.html -- 6.6 Кб -- 05.09.2014
Похожие документы

4. Example of a simple shell script
These are the contents of a shell script called display : cat display # This script displays the date, time, username and # current directory. echo "Date and time is:" date echo echo "Your username is: `whoami` \\n" echo "Your current directory is: \\c" pwd . The first two lines beginning with a hash ( # ) are comments and are not interpreted by the shell. Use comments to document your shell script; you will be surprised how easy it is to forget what your own programs do! ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt1a.html -- 2.9 Кб -- 17.01.1997
Похожие документы

5. mod_actions - Apache HTTP Server
... Apache HTTP Server Version 2.2 . Apache > HTTP Server > Documentation > Version 2.2 > Modules . ... This module provides for executing CGI scripts based on media type or request method. ... The Action directive lets you run CGI scripts whenever a file of a certain MIME content type is requested. ... Action action-type cgi-script [virtual] . ... Script method cgi-script . ... This directive adds an action, which will activate cgi-script when a file is requested using the method of method . ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/en/mod/mod_actions.html -- 12.9 Кб -- 21.01.2013
Похожие документы

6. pyQC: overview
... Python 2.6.2 + most up-to-date modules (December 2009) . ... release of V1.1 for qclib and plot modules (March 2009) . ... a python routine that shows how easy it it to create log plots (base 10 or otherwise), and how python takes care of the scaling and the axis numbers automatically. ... a python routine that shows how easy it is to plot images, change their interpolation, add contours, add an overplot, and add a colour bar. ... a python routine that shows how easy it is to plot FITS images. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~qc/tqs/pyqc/python_demos.html -- 20.9 Кб -- 07.12.2009
Похожие документы
Еще в разделе: (Показать все результаты (>5843) - www.eso.org/ )

7. GIMP animations: merge-anim examples
The following pages contain some examples of what you can do with my merge-anim script.. I tried to minimize the size of the images on these pages (all animations are smaller than 50 Kb), but you will probably have to be patient anyway. ... Adding a background to an animation . ... It merges a background (or top) layer with all other layers in an animation. ... I will probably add some options for applying a layer mask to an animation or applying an animated mask to a static layer. ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~megera/gimp/merge-anim/ -- 3.4 Кб -- 22.12.2007
Похожие документы

8. GUI-fying and Documenting your Shell Script
... We describe a simple method to annotate shell scripts and have a preprocessor extract a set of variables, present them to the user in a GUI (using Tcl/Tk) with context sensitive help, and run the script. ... When individual applications are (tightly) integrated into the scripting language, this offers very powerful scripts, fully graphical user interfaces and a result sometimes indistinguishable from applications. ... Here is an example header from a C-shell script with which Figure 1 was made. ...
[ Сохраненная копия ]  Ссылки http://www.stecf.org/conferences/adass/adassVII/teubenp.html -- 10.5 Кб -- 12.06.2006
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass97/teubenp.html -- 10.5 Кб -- 15.05.1998
Похожие документы

9. Writing Shell Scripts
... To aid description, line numbers are given on the left side of each line (these line numbers are not part of the shell script ). 1: #!/bin/csh 2: 3: # Delete any datasets called multi.uv . 4: 5: rm -rf multi.uv 6: 7: fits in= MULTI.UV op=uvin out= multi.uv 8: 9: foreach srcnam ( 1934-638 0823-500 vela ) 10: uvaver vis = multi.uv select=source(${ srcnam }) out=${ srcnam }.uv 11: end 12: 13: mfcal Line 1: C-shell scripts must always start with the rather cryptic #!/bin/csh . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/miriad/userguide/node20.html -- 8.0 Кб -- 10.04.2016
Похожие документы

10. Python T5: 061405 script
Examples corresponding to source files are followed by examples of usage . ... class Clown: . ... def __init__(self, noise='Honk Honk'): . ... def makenoise(self): . ... return self.values[index] . ... def __call__(self, wave): . ... return self.comp1(wave) + self.comp2(wave) . ... return n.exp(-(wave-self.center)**2/(2*self.width**2)) . ... return self.tran1(wave) * self.tran2(wave) . ... return 0.*wave + self.value . ... return 1. - self.depth*n.exp(-(wave-self.center)**2/(2*self.width**2)) . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/institute/itsd/information/streaming/archive/InstrumentDivisionTrainingSeries/PerryGreenfield061405_supporting/PerryGreenfield061405html -- 14.6 Кб -- 25.09.2012
Похожие документы

11. Mie Extinction Bojan Nikolic web pages (r. 329)
... Bojan Nikolic web pages (r. 329) . Understanding Infrared emission from galaxies . Although the package <a href=?dustmodel.html?>dust</a> is primarily aimed at modelling emission from interstellar dust at mid/far IR wavelengths it has the facilities to compute both Mie <em>scattering</em> and <em>absorption</em>. ... This is a python script which calls the pydust library to compute the Mie absorption and scattering efficiencies: . ... Mie Extinction . Computing Mie Scattering . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/~bn204/ir/mieext.html -- 9.8 Кб -- 04.04.2016
Похожие документы

12. Apache HTTP Server: Security Tips
... Server Side Includes . ... Protect Server Files by Default . Some hints and tips on security issues in setting up a web server. ... In typical operation, Apache is started by the root user, and it switches to the user defined by the User directive to serve hits. ... If the logs directory is writeable (by a non-root user), someone could replace a log file with a symlink to some other system file, and then root might overwrite that file with arbitrary data. ... Accessing http://localhost/~root/ . ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/misc/security_tips.html -- 12.2 Кб -- 01.08.2003
Похожие документы

13. Course Info
.
[ Сохраненная копия ]  Ссылки http://www.mso.anu.edu.au/~fbriggs/waarneem.html -- 3.4 Кб -- 01.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>379) - www.mso.anu.edu.au/ )

14. Dynamic HTML in Communicator
... This example illustrates the use of external files as the source for a layer. This example creates a web page for Nikki's Diner, which is a vegan restaurant that offers tasty daily specials. The web page contains some general information about the diner, and then offers a pop-up menu that lists the days of the week. ... These files contain HTML formatted text that describes the specials for that day. ... LAYER ID="menu" LEFT=50 WIDTH=400 src="specials/sat.htm"> </LAYER> . ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/~vab/html.doc/dhtml/dynhtml/layers36.htm -- 11.0 Кб -- 13.08.1997
Похожие документы

15. THIRD Example - a9999c.sls general set-up file.
Next: FOURTH Example - a9999d.sls Up: Setup & Procedure Files Previous: SECOND Example - a9999b.sls . ... a9999.log srcfile src.list # Source the standard procedure which is invoked as 'dosrc' source /share/obs4/usr/a9999/onoff.tcl # Set correlator board and mean RF center frequencies set sbfr1 1350.0 set sbfr2 1370.0 set sbfr3 1390.0 set sbfr4 1410.0 set rfcfr 1380.0 # Setup Doppler corrections dopsetfrq $rfcfr $sbfr1 $sbfr2 $sbfr3 $sbfr4 dopsetvel 0 hel dopsetrfonly dopsetdoit # ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~astro/spectral_line/handbook_old/app/files/third_sls.html -- 3.8 Кб -- 19.09.2000
Похожие документы

16. Setting the CDE Backdrop - shell script
CDE doesn't make it easy to set the background image of the workspaces dynamically. ... Since the whole reason I did this was to look at jumbo images across both of my monitors, I found another way. cde-backdrop is a shell script (/bin/sh) that can be used on the command line or called from other scripts, which will find the CDE backdrop window which you select by name, and apply an image (in a variety of formats) to that background. cde-backdrop [ workspace | ... Download cde-backdrop version 1.0 . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/Tech/cde-backdrop.html -- 8.0 Кб -- 10.04.2016
Похожие документы

17. JavaScript Form Validator Documentation
The Form validation script is distributed free from JavaScript-Coder.com . ... When there are many fields in the form, the JavaScript validation becomes too complex. ... Each field in the form can have 0, 1, or more validations. ... Just after defining your form, Create a form validator object passing the name of the form . ... FORM> . ... You can add any number of validations.The list of validation descriptors are provided at the end of the documentation. ... option value="" selected>[choose yours] . ...
[ Сохраненная копия ]  Ссылки http://hea.iki.rssi.ru/Z-90/scripts/Documentation.html -- 15.5 Кб -- 03.08.2003
Похожие документы
Еще в разделе: (Показать все результаты (>188) - hea.iki.rssi.ru/ )

18. http://www.stecf.org/conferences/adass/adassVII/reprints/teubenp.ps.gz
... GUI­fying and Documenting your Shell Script Peter. ... We describe a simple method to annotate shell scripts and have a preprocessor extract a set of variables, present them to the user in a GUI (using Tcl/Tk) with context sensitive help, and run the script. ... Tcl/Tk: TkRun The GUI that is created will provide a simple interface to a program that is spawned by the GUI. ... Sample Script: testscript Here is an example header from a C­shell script with which Figure 1 was made. ...
[ Текст ]  Ссылки http://www.stecf.org/conferences/adass/adassVII/reprints/teubenp.ps.gz -- 105.9 Кб -- 12.06.2006
Похожие документы
Еще в разделе: (Показать все результаты (>197) - www.stecf.org/ )

19. XMM-Newton Further EPIC Background Scripts
... Estimation of the residual Soft Proton flare contamination . ... The script can be run on any EPIC event files (MOS1, MOS2 and/or pn), to estimate the amount of *residual* Soft Proton (SP) flare contamination, i.e. it should only be used *after* attempts have been made to clean the event files for SPs using GTI filtering. ... The higher the in-FOV to out-of-FOV ratio, the more the file is contaminated by SPs: . ... File is not contaminated by SPs. ... File is slightly contaminated by SPs. ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/external/xmm_sw_cal/background/epic_scripts.shtml -- 16.0 Кб -- 11.04.2016
Похожие документы

20. Digitized Sky Survey - SIAP Interface
SAI VO . ... SAI CAS . ... Web Services . Catalog Access Services . ... SAI VO Wiki . ... Program Access . SAI CAS Wiki . SAI Web Services . ... DSS Mirror . ... We provide an implementation of IVOA standard Simple Image Access Protocol interface to our DSS mirror. Service metadata is available here . Currently, we provide the atlas service only, which returns the list of original DSS images intersecting the requested sky area. ... SAI MSU | ...
[ Сохраненная копия ]  Ссылки http://vo.astronet.ru/dss/siap.html -- 5.0 Кб -- 01.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>27) - vo.astronet.ru/ )

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


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

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

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