| FILE ENCODING | UTF8 (please use <kbd>iconv -f YOUR_ENCODING -t UTF-8 file_to_convert > converted_file </kbd> before to push) |
| FILE ENCODING | UTF8 (please use <kbd>iconv -f YOUR_ENCODING -t UTF-8 file_to_convert > converted_file </kbd> before to push) |
| LANGUAGE | English (preferred) |
| LANGUAGE | English (preferred) |
| INDENT STYLE | [Stroustrup](http://en.wikipedia.org/wiki/Indent_style#Variant:_Stroustrup) using 1 tab for 4 columns wide. check [here for vim setup](http://tedlogan.com/techblog3.html) |
| INDENT STYLE | [Stroustrup](http://en.wikipedia.org/wiki/Indent_style#Variant:_Stroustrup) using 1 tab for 4 columns wide. check [here for vim setup](http://tedlogan.com/techblog3.html) |
| | If you prefer, please use: *astyle -t4 -A4 -y file_to_convert* before to push
| | If you prefer, please use: <kbd>astyle -t4 -A4 -y file_to_convert</kbd> before to push
| VERSIONING | Sequence-based identifiers, v<version>r<release>. First public release: **v1r0**
| VERSIONING | Sequence-based identifiers, v<version>r<release>. First public release: **v1r0**
| INSTALL | After installing dependences (see INSTALL), just *make*
| INSTALL | After installing dependences (see INSTALL), just *make*
| USAGE | Please visit our [wikipage](http://wiki.lagoproject.org)(internal use only)|
| USAGE | Please visit our [wikipage](http://wiki.lagoproject.org)(internal use only)|
print"# WARNING\t$parameters[0] environment variable is not defined.\n\t\tProbably this is a first installation of LAGO ACQUA in this\n\t\tsystem. I will include a line into your .bashrc (assuming\n\t\tyou are using bash. If not just add the contents of .bashrc\n\t\tinto your environments file). The original .bashrc will be\n\t\trenamed to .bashrc-lago.bak.\n";
print$fh"\n#\n# Changes added by the LAGO ACQUA suite on $now UTC\n#\n";
print$fh"export $parameters[0]='$pwd'\n\n";
close($fh);
cmd("cp $home/.bashrc $home/.bashrc-lago.bak");
cmd("cat tmp >> $home/.bashrc");
cmd("rm tmp");
print"# SUCCESS\tLAGO environment variable is set and .bashrc was changed\n\n";
}else{# ok. is defined, but is the same as current directory?
unless($ENV{$parameters[0]}eq$pwd){
$tmp=get("# WARNING\tIt looks like you are not in the standard LAGO ACQUA location:\n\t\tStandard: $ENV{$parameters[0]}\n\t\tCurrent: $pwd\nDo you want to change it here (I will change .bashrc also)? (y/n)",'n',"NEWENV");