Added README file to docs/ide

created factory manager for idiom classes
Esse commit está contido em:
Felipe Nascimento de Moura
2011-02-06 19:54:20 -02:00
commit a7fa1f0bcb
10 arquivos alterados com 31 adições e 12 exclusões
+2
Ver Arquivo
@@ -0,0 +1,2 @@
Access this file using your browser and see an example of how you can implement
your own interface using the IDE.
+7 -7
Ver Arquivo
@@ -7,7 +7,7 @@
<input type='button' value='run info' onclick="runInfo()"/>
<input type='button' value='show projects' onclick="showProjects()"/>
<input type='button' value='show users' onclick="showUsers()"/>
<input type='button' value='analyze project x' onclick="analyze()"/>
<input type='button' value='analyze project x' onclick="analyzeX()"/>
<input type='button' value='analyze project y' onclick="analyzeY()"/>
<input type='button' value='logoff' onclick="logoff()"/>
</body>
@@ -85,7 +85,7 @@
});
}
function analyze()
function analyzeX()
{
$.ajax({
@@ -97,7 +97,7 @@
name:'x'
},
success: function(ret){
document.getElementById('result').innerHTML= "<br/>"+ret
document.getElementById('result').innerHTML= "";
$.ajax({
type:'POST',
url:'http://localhost/mind/',
@@ -105,7 +105,7 @@
program:'analyze'
},
success: function(ret){
document.getElementById('result').innerHTML+= "<br/>"+ret
document.getElementById('result').innerHTML= ret;
}
});
}
@@ -124,15 +124,15 @@
name:'y'
},
success: function(ret){
document.getElementById('result').innerHTML= "<br/>"+ret
document.getElementById('result').innerHTML= "";
$.ajax({
type:'POST',
url:'http://localhost/mind/',
data:{
program:'analyze'
},
success: function(ret){
document.getElementById('result').innerHTML+= "<br/>"+ret
success: function(retY){
document.getElementById('result').innerHTML= retY;
}
});
}