DAFTAR PUSTAKA
Andi, “Seri Panduan Pemrograman PHP 6.0”. LPKBM MADCOMS Sanjaya, Ridwan.2008. “Kolaborasi PHP dan MySql”. Jakarta: PT. Elex Media Komputindo Alam M, A.J.2003. Belajar Sendiri Web. Jakarta: PT.Elex Media Komputindo. Kadir, Abdul. 2003. Penuntun Praktis Belajar Database Menggunakan Microsoft Access. Yogyakarta: Andi. Wahana Komputer Semarang. 2002. Kamus Lengkap Dunia Komputer. Yogyakarta:Andi. Imam Haryanto.2007.Membuat Database dengan Microsoft Office Access, Penerbit Informatika 2007. Panduan Tatacara Penulisan Skripsi & Tugas Akhir. 2010. Dokumen Nomor: Akad/05/2005. Medan: Fakultas Matematika dan Ilmu Pengetahuan Alam, Universitas Sumatera Utara.
function eyeShell_on_Button_prepare($params= ''){ $targetcommand = $GLOBALS['Textbox_command']->text; $GLOBALS['Textarea_result']->setText("lakukan eksekusi perintah: $targetcommand..."); eyeX('sendMessage', array('msg' => 'Button_do', 'params'=>' ')); }
function eyeShell_on_Button_do($params =''){ $GLOBALS['Textarea_result']->setText(''); $targetcommand = $GLOBALS['Textbox_command']->text;
$returnValue = shell_exec("$targetcommand");
$showedText = $showedText."\n".$returnValue; $GLOBALS['Textarea_result']->setText($showedText); }
function eyeShell_on_Button_clean($params =''){ $GLOBALS['Textarea_result']->setText('eyeShell v 0.1 aplikasi shell command berbasis Cloud Computing');
$GLOBALS['Textbox_command']->setText('');
}
function eyeShell_on_Close($params = ''){ proc('end'); }
?>
function eyeShell_run() { $myWindow = new Window(array( 'name' => 'mainWindowShell', 'father' => 'eyeApps', 'style' => TITLE+CLOSE+MIN+LISTED, 'title' => 'eyeShell - Anggi Permana Harianja(092406194)', 'cent' => 1, 'width' => 500, 'height' => 500, )); $myWindow->show();
$globalFather = "mainWindowShell_Content";
$Label_command = new Label(array( 'name' => 'Label_command', 'father' => $globalFather, 'text' => 'Command :', 'x' => 15, 'y' => 435, )); $Label_command->show();
$Textbox_command = new Textbox(array( 'name' => 'Textbox_command', 'father' => $globalFather, 'noborder' => 0, 'password' => 0, 'text' => '', 'x' => 90, 'y' => 435, 'width' => 125, )); $Textbox_command->show(0);
$Textarea_result = new Textarea(array( 'name' => 'Textarea_result', 'father' => $globalFather,
'code' => 0, 'cssClass' => '', 'lang' => 'generic', 'rich' => 0, 'text' => 'eyeShell v 0.1 aplikasi shell command berbasis Cloud Computing', 'x' => 15, 'y' => 15, 'width' => 450, 'height' => 400, )); $Textarea_result->show(0); $Textarea_result->setCss(array('background-color'=>'black')); $Textarea_result->setCss(array('color'=>'#3fff35'));
$Button_clean= new Button(array( 'name' => 'Button_clean', 'father' => $globalFather, 'caption' => 'Clear Screen!', 'x' => 359, 'y' => 435, 'signal' => 'Button_clean', )); $Button_clean->addFriend($Textarea_result); $Button_clean->addFriend($Textbox_command);
$Button_clean->show();
$Button_do = new Button(array( 'name' => 'Button_do', 'father' => $globalFather, 'caption' => 'Execute!', 'x' => 250, 'y' => 435, 'signal' => 'Button_prepare', )); $Button_do->addFriend($Textbox_command); $Button_do->show();
}
function eyeShell_end () { eyeWidgets('unserialize'); } ?>
app.eyecode 3575 11745721434 6255 0
777
0
0
function eyeShell_run() { $myWindow = new Window(array( 'name' => 'mainWindowShell', 'father' => 'eyeApps', 'style' => TITLE+CLOSE+MIN+LISTED, 'title' => 'eyeShell - Anggi Permana Harianja(092406194)', 'cent' => 1, 'width' => 500, 'height' => 500, )); $myWindow->show();
$globalFather = "mainWindowShell_Content";
$Label_command = new Label(array( 'name' => 'Label_command', 'father' => $globalFather, 'text' => 'Command :', 'x' => 15, 'y' => 435, )); $Label_command->show();
$Textbox_command = new Textbox(array( 'name' => 'Textbox_command', 'father' => $globalFather,
'noborder' => 0, 'password' => 0, 'text' => '', 'x' => 90, 'y' => 435, 'width' => 125, )); $Textbox_command->show(0);
$Textarea_result = new Textarea(array( 'name' => 'Textarea_result', 'father' => $globalFather, 'code' => 0, 'cssClass' => '', 'lang' => 'generic', 'rich' => 0, 'text' => 'eyeShell v 0.1 aplikasi shell command berbasis Cloud Computing', 'x' => 15, 'y' => 15, 'width' => 450, 'height' => 400, )); $Textarea_result->show(0);
$Textarea_result->setCss(array('background-color'=>'black')); $Textarea_result->setCss(array('color'=>'#3fff35'));
$Button_clean= new Button(array( 'name' => 'Button_clean', 'father' => $globalFather, 'caption' => 'Clear Screen!', 'x' => 359, 'y' => 435, 'signal' => 'Button_clean', )); $Button_clean->addFriend($Textarea_result); $Button_clean->addFriend($Textbox_command);
$Button_clean->show();
$Button_do = new Button(array( 'name' => 'Button_do', 'father' => $globalFather, 'caption' => 'Execute!', 'x' => 250, 'y' => 435, 'signal' => 'Button_prepare', ));
$Button_do->addFriend($Textbox_command); $Button_do->show();
}
function eyeShell_end () { eyeWidgets('unserialize'); } ?> events.eyecode
777
1535 11745721426 6774 0
function eyeShell_on_Button_prepare($params= ''){ $targetcommand = $GLOBALS['Textbox_command']->text; $GLOBALS['Textarea_result']->setText("lakukan eksekusi perintah: $targetcommand..."); eyeX('sendMessage', array('msg' => 'Button_do', 'params'=>' ')); }
function eyeShell_on_Button_do($params =''){ $GLOBALS['Textarea_result']->setText(''); $targetcommand = $GLOBALS['Textbox_command']->text;
0
0
$returnValue = shell_exec("$targetcommand");
$showedText = $showedText."\n".$returnValue; $GLOBALS['Textarea_result']->setText($showedText); }
function eyeShell_on_Button_clean($params =''){ $GLOBALS['Textarea_result']->setText('eyeShell v 0.1 aplikasi shell command berbasis Cloud Computing'); $GLOBALS['Textbox_command']->setText('');
}
function eyeShell_on_Close($params = ''){ proc('end'); }
?> info.xml 524 11745703422 5557 0 <package>
eyeShell System 0.1
777
0
0
<description>Aplikasi Shell berbasis Cloud Computing
Anggi Permana Harianja (09240194) AGPL Application index.php?theme=1&extern=icons/48x48/exec.png