Scarecrow and Mrs. King
Episode Titles in Italian!

Provided by Duska B.


Aired on Canale 5 and Rete 4.

American Titles:
Scarecrow and Mrs. King
Italian Titles:
Top Secret (not translated)
Season 1prima stagione
The First TimeLa prima missione
There Goes the NeighborhoodAsciugacapelli pericolosi
The ACM KidIl bambino dell'A.C.M.
If Thoughts Could Kill Cervelli programmati
Magic BusIl ricatto dei "superstiti"
Service Above and BeyondLa trappola mortale
Always Look a Gift Horse in the MouthA caval donato...
Saved by the BellsL'ostaggio sbagliato
Sudden Death Morte improvvisa
The Long Christmas EveLa lunga vigilia di Natale
Remembrance of Things PastRicordo del passato
Lost and FoundPerduta e ritrovata
I Am Not Now, Nor Have I Ever Been...a Spy(don't know)
Dead RingerSomiglianza pericolosa
The MoleLa talpa
SaviorOperazione Savior
The Artful DodgerUn regalo sospetto
Filming RaulIl cineamatore
Fearless DottyUn uomo nell'armadio
WeekendWeekend
Waiting for GodorskyAspettando Godorsky
Charity Begins at HomeSbornie e beneficenza
Season 2seconda stagione
The Times They Are a Changin' Il misterioso attentato
The Legend of das GeisterschlossLa leggenda
Our Man in TegernseeIl nostro uomo a Tegernsee
To Catch a MongooseLa mangusta
The Affair at Bromfield Hall Scandalo a Bromfield Hall
Double AgentIl manoscritto compromettente
The Three Faces of EmilyLe tre facce di Emily
A Class ActStazione uno
Brunettes Are InLe brune sono di moda
Car WarsAttenti a quell'auto
Playing PossumOperazione Possum
Ship of SpiesNave di spie
SpiderwebOperazione Spider
A Relative SituationUna situazione precaria
A Little Sex, a Little ScandalUn po' di sesso, un po' di scandalo
Life of the PartyCameriere un po' speciali
Odds on a Dead PigeonIl sosia
D.O.A.: Delirious on ArrivalL'antidoto
You Only Die Twice (don't know)
Burn OutFinito!
Murder Between FriendsL'assassinio di un amico
Vigilante MothersLa spia della porta accanto
Season 3terza stagione
Welcome to America, Mr. BrandBenvenuto in America, Signor Brand
Over the Limit Il pescecane
We're Off to See the WizardL'affare Oz
A Lovely Little AffairUn affaruccio delizioso
Tail of the Dancing WeaselKolinsky, la donnola danzatrice
Sour GrapesL'uva acerba
Utopia NowNuova utopia
Reach for the SkyMani in alto
J. Edgar's GhostIl fantasma di J. Edgar
Flight to Freedom Fuga per la libertà
The Wrong Way HomeIl capro espiatorio
Fast Food for Thought Doppia salsa mortale
One Bear Dances, One Bear Doesn't Un orso balla, l'altra no
Playing for KeepsUna partita pericolosa
The Pharaoh's EngineersCodice: piramide
The TriumvirateIl triumvirato
The Eyes Have itA me gli occhi
Wrong NumbersSpia contro spia
The Boy Who Could Be KingIl principe ereditario
Dead Men Leave No TrailsI morti non lasciano tracce
Three Little SpiesTre piccole spie
All the World's a StageIntrigo in palcoscenico
Unfinished Business Un conto in sospeso
Season 4quarta stagione
Stemwinder - Part 1Operazione Stemwinder, 1 parte
Stemwinder - Part 2 Operazione Stemwinder, 2 parte
It's in the WaterPericolo nell'acqua
No Thanks for the Memory No, grazie
Photo FinishSotto inchiesta
Night CrawlerL'informatore
Billy's Lost Weekend Il weekend dimenticato
The Man Who Died TwiceL'uomo che morì due volte
Need to KnowIl tri-tanio
Any Number Can PlayIl fidanzato spia
Santa's Got a Brand New Bag Un Natale molto speciale
Bad TimingQuestione di secondi
Promises to KeepUna promessa mantenuta
Rumors of my DeathLe voci sulla mia morte...
Do You Take This Spy?Vuoi prendere questa spia ?
Mission of GoldMissione oro
One Flew EastUn poeta antinuclearista
The Khrushchev ListLa lista Krusciov
Suitable for FramingIl cavallo di Troia
All That GlittersNon è tutt'oro quello che riluce
A Matter of ChoiceQuestione di scelta


<
Back to Amanda's home

Web Page designed by
©1997-2001 valis@Freenet.fsu.edu #!/usr/bin/perl ############################################################################## # TextCounter Version 1.2.1 # # Copyright 1996 Matt Wright mattw@worldwidemart.com # # Created 3/14/96 Last Modified 6/24/98 # # Scripts Archive at: http://www.worldwidemart.com/scripts/ # ############################################################################## # COPYRIGHT NOTICE # # Copyright 1996 Matthew M. Wright All Rights Reserved. # # # # TextCounter may be used and modified free of charge by anyone so long as # # this copyright notice and the comments above remain intact. By using this # # code you agree to indemnify Matthew M. Wright from any liability that # # might arise from it's use. # # # # Selling the code for this program without prior written consent is # # expressly forbidden. In other words, please ask first before you try and # # make money off of my program. # # # # Obtain permission before redistributing this software over the Internet or # # in any other medium. In all cases copyright and header must remain intact.# # $n = `nslookup $ip | grep Name`; chop($n); # $host=substr($n, rindex($n, " ")+1); # if ($host eq "") { $host=$ENV{'REMOTE_HOST'}; } ############################################################################## # Define Variables # Data Dir is the directory on your server that you wish to store the # count files in. Each page that has the counter on it will have it's own # file. Log Dir is the directory that keeps visitor logs. $data_dir = "/count/number"; $log_dir = "/count"; # Get host address and log visitor information $ip = $ENV{'REMOTE_HOST'}; # Assign Environment Var $local_date = $ENV{'DATE_LOCAL'}; $ip_addr = $ENV{'REMOTE_ADDR'}; $browser = $ENV{'HTTP_USER_AGENT'}; $refer = $ENV{HTTP_REFERER}; $page = $ENV{'DOCUMENT_URI'}; $page_name = $ENV{'DOCUMENT_NAME'}; # Valid-URI allows you to set up the counter to only work under specific # directories on your server. Include any of these directories as they # appear in a URI, into this array. More information on URI's available in # README. @valid_uri = ('/'); # Invalid-URI allows the owner of this script to set up the counter so # that certain portions of the web server that may be included in Valid-URI # cannot use the program. Leave this commented out if you wish not to # block out certain parts. #@invalid_uri = ('/'); ############################################################################## # Set Options # Show Link allows you to add a link around the counter to point to # either instructions explaining to users how to set this up on the system # (useful if a system administrator wants to allow anyone to set things up # themselves). Setting it to 0 will make no link, otherwise put the URL # you want linked to the count here. $show_link = "0"; # When Auto-Create is enabled, users will be able to auto-create the # count on their home pages by simply imbedding the Server Side Includes # call. Setting auto_create to 1 enables it, 0 will disable it. Only # users in @valid_uri will be allowed to auto create. $auto_create = "1"; # Show Date will show the date of when the count began if you set this # option to 1. It will appear in yor document as [Count] hits since [Date]. # Set this to 0 and it will simply return the [Count]. $show_date = "0"; # Lock Seconds will define the number of seconds the script should sit # and wait for the lock file to be gone before it will overwrite it if it # is still there. Every now and then a user will interrupt a page, causing # the script to halt and leave a lock file in place before the lock file # could be removed. This defines how long it waits. $lock_sec = "5"; # Padding Size define how many numbers will be shown as your count. For # instance, if you want your count to say 00065 and have the zeros padded # up to five digits, then set $pad_size = "5"; If the number goes higher # than the pad_size, don't worry, there just won't be any zero's tacked # onto the front. $pad_size = "1"; ############################################################################## # Print Content Type Header For Browser print "Content-type: text/html\n\n"; # Get the page location from the DOCUMENT_URI environment variable. $count_page = $ENV{'DOCUMENT_URI'}; #$count_page = $ENV{'DOCUMENT_NAME'}; # Check Valid-URI to make sure user can use this program. #&check_uri; # Chop off any trailing /'s if ($count_page =~ /\/$/) { chop($count_page); } #$count_page =~ s/\//_/g; # replace '/' by '_' #$count_page =~ s/./_/g; # replace '/' by '_' # Any characters that are not letters or numbers are turned into an underscore $count_page =~ s/[^\w]/_/g; $lock_file = "$count_page\.lock"; # Check to see if file is locked by program already in use. &check_lock($lock_sec); # If the file exists, get the date and count out of it. Otherwise, if # auto_create is allowed, create a new account. If neither of these are # true, return an error. if (-e "$data_dir$count_page") { open(COUNT,"$data_dir$count_page"); $line = ; chop($line) if $line =~ /\n$/; close(COUNT); ($date,$count) = split(/\|\|/,$line); } elsif ($auto_create == 1) { &create; } else { &error('page_not_found'); } # Increment Count. $count++; $print_count = $count; # Get Count Length for use in padding. $count_length = length($count); # Pad the number if it is smaller than $pad_size. for ($i = $pad_size;$i > $count_length;$i--) { $print_count = "0$print_count"; } # Print the Count, Link and Date depending on what user has specified # they wish to print. if ($show_date == 1) { if ($show_link =~ /http:\/\//) { print "$print_count hits since $date"; } else { print "$print_count hits since $date"; } } else { if ($show_link =~ /http:\/\//) { print "$print_count"; } else { print "$print_count"; print ""; } } # Open the count file and write the new count that has been incremented. open(COUNT,">$data_dir$count_page") || &error('could_not_increment'); print COUNT "$date\|\|$count"; close(COUNT); # Log the visitor's info &log; # Remove Lock File for next time script is run on that HTML page. &clean_up; sub check_uri { $uri_check = "0"; foreach $uri (@valid_uri) { if ($page =~ /$uri/) { $uri_check = "1"; last; } } foreach $uri (@invalid_uri) { if ($page =~ /$uri/) { $uri_check = "0"; last; } } if ($uri_check == 0) { &error('bad_uri'); } } sub create { ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); @months = ("January","February","March","April","May","June","July", "August","September","October","November","December"); $year += 1900; $date = "$months[$mon] $mday, $year"; $count = "0"; open(COUNT,">$data_dir$count_page") || &error('count_not_created'); print COUNT "$date\|\|$count"; close(COUNT); open(FILE,">$log_dir$count_page") || &error('count_not_created'); print FILE ""; close(FILE); } sub error { $error = shift(@_); if ($error eq 'page_not_found') { print "[TextCounter Fatal Error: This Page Not Found\; Auto-Create Option Disabled]"; } elsif ($error eq 'bad_uri') { # print "Content-type: text/html\n\n"; print <<"HTML_SOURCE"; Access Denied

Access Denied

You are not allowed to execute this cgi-script. An attempt of hacking is detected on the time of $local_date. Please inform this to the owner of the referring url. $refer

Here is some information about you

Where you are from: $host
Address: $ip_addr
Browser you are using: $browser
259.4530

All information logged and forwarded to the WebMaster and Web Administrator. HTML_SOURCE &log('hack'); } elsif ($error eq 'count_not_created') { print "[TextCounter Fatal Error: Could Not Write to File $datadir$count_page]"; } elsif ($error eq 'could_not_increment') { print "[TextCounter Fatal Error: Could Not Increment Counter]"; } exit; } sub log { $log_type = $_[0]; # Begin the Editing of the LOG File open (FILE,"$log_dir$count_page") || die "Couldt Open\n"; @LINES=; close(FILE); $SIZE=@LINES; # Open Link File to Output open (LOG,">$log_dir$count_page") || die "Can't Open\n"; for ($i=0;$i<=$SIZE;$i++) { $_=$LINES[$i]; if (//) { print LOG "\n"; print LOG "$local_date - # $print_count
\n"; print LOG "Who: $host - $ip_addr
\n"; print LOG "Browser: $browser
\n"; print LOG "From: $refer
\n"; #print LOG "$ENV{'REMOTE_HOST'}
\n"; if ($log_type eq 'hack') { print LOG "- hack!\n"; } # Add envirnoment variables if ($ENV{'HTTP_PRAGMA'}) { print LOG "PRAGMA: $ENV{'HTTP_PRAGMA'}
\n"; } print LOG "ACCEPT: $ENV{'HTTP_ACCEPT'}
\n"; print LOG "CHARSET: $ENV{'HTTP_ACCEPT_CHARSET'}
\n"; print LOG "LANGUAGE: $ENV{'HTTP_ACCEPT_LANGUAGE'}
\n"; print LOG "PRAGMA: $ENV{'HTTP_PRAGMA'}
\n"; if ($ENV{'DOCUMENT_URI'}) { print LOG "Doc: $ENV{'DOCUMENT_URI'}
\n"; } if ($ENV{'HTTP_UA_COLOR'}) { print LOG "COLOR: $ENV{'HTTP_UA_COLOR'}
\n"; } if ($ENV{'HTTP_UA_CPU'}) { print LOG "CPU: $ENV{'HTTP_UA_CPU'}
\n"; } if ($ENV{'HTTP_UA_DISP'}) { print LOG "DISP: $ENV{'HTTP_UA_DISP'}
\n"; } if ($ENV{'HTTP_UA_OS'}) { print LOG "OS: $ENV{'HTTP_UA_OS'}
\n"; } if ($ENV{'HTTP_UA_PIXELS'}) { print LOG "PIXELS: $ENV{'HTTP_UA_PIXELS'}
\n"; } print LOG "REDIRECT_URL: $ENV{'REDIRECT_URL'}\n"; # End environment variables print LOG "

\n\n"; } else { print LOG $_; } } close (LOG); } sub check_lock { $time = $_[0]; for ($i = 1;$i <= $time; $i++) { if (-e "$data_dir$lock_file") { sleep 1; } else { open(LOCK,">$data_dir$lock_file"); print LOCK "0"; close(LOCK); last; } } } sub clean_up { unlink("$data_dir$lock_file"); }


-
(none)