您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

152 行
6.5 KiB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>Concepts &mdash; Documentation</title>
  7. <link rel="stylesheet" href="_static/sphinxdoc.css" type="text/css" />
  8. <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
  9. <script type="text/javascript">
  10. var DOCUMENTATION_OPTIONS = {
  11. URL_ROOT: '',
  12. VERSION: '',
  13. COLLAPSE_MODINDEX: false,
  14. FILE_SUFFIX: '.html',
  15. HAS_SOURCE: true
  16. };
  17. </script>
  18. <script type="text/javascript" src="_static/jquery.js"></script>
  19. <script type="text/javascript" src="_static/doctools.js"></script>
  20. <link rel="top" title="Documentation" href="index.html" />
  21. <link rel="up" title="1. Introduction" href="intro.html" />
  22. <link rel="next" title="2. Building an Application" href="build_app.html" />
  23. <link rel="prev" title="Web Notes Framework" href="webnotes_intro.html" />
  24. </head>
  25. <body>
  26. <div style="background-color: #FFF; text-align: left; padding: 8px 0px"><img src="_static/banner300910.gif"></div>
  27. <div class="related">
  28. <h3>Navigation</h3>
  29. <ul>
  30. <li class="right" style="margin-right: 10px">
  31. <a href="genindex.html" title="General Index"
  32. accesskey="I">index</a></li>
  33. <li class="right" >
  34. <a href="modindex.html" title="Global Module Index"
  35. accesskey="M">modules</a> |</li>
  36. <li class="right" >
  37. <a href="build_app.html" title="2. Building an Application"
  38. accesskey="N">next</a> |</li>
  39. <li class="right" >
  40. <a href="webnotes_intro.html" title="Web Notes Framework"
  41. accesskey="P">previous</a> |</li>
  42. <li><a href="index.html">Documentation</a> &raquo;</li>
  43. <li><a href="intro.html" accesskey="U">1. Introduction</a> &raquo;</li>
  44. </ul>
  45. </div>
  46. <div class="sphinxsidebar">
  47. <div class="sphinxsidebarwrapper">
  48. <h3><a href="index.html">Table Of Contents</a></h3>
  49. <ul>
  50. <li><a class="reference external" href="">Concepts</a><ul>
  51. <li><a class="reference external" href="#structure">Structure</a></li>
  52. <li><a class="reference external" href="#developing-an-application">Developing an Application</a></li>
  53. </ul>
  54. </li>
  55. </ul>
  56. <h4>Previous topic</h4>
  57. <p class="topless"><a href="webnotes_intro.html"
  58. title="previous chapter">Web Notes Framework</a></p>
  59. <h4>Next topic</h4>
  60. <p class="topless"><a href="build_app.html"
  61. title="next chapter">2. Building an Application</a></p>
  62. <h3>This Page</h3>
  63. <ul class="this-page-menu">
  64. <li><a href="_sources/concepts.txt"
  65. rel="nofollow">Show Source</a></li>
  66. </ul>
  67. <div id="searchbox" style="display: none">
  68. <h3>Quick search</h3>
  69. <form class="search" action="search.html" method="get">
  70. <input type="text" name="q" size="18" />
  71. <input type="submit" value="Go" />
  72. <input type="hidden" name="check_keywords" value="yes" />
  73. <input type="hidden" name="area" value="default" />
  74. </form>
  75. <p class="searchtip" style="font-size: 90%">
  76. Enter search terms or a module, class or function name.
  77. </p>
  78. </div>
  79. <script type="text/javascript">$('#searchbox').show(0);</script>
  80. </div>
  81. </div>
  82. <div class="document">
  83. <div class="documentwrapper">
  84. <div class="bodywrapper">
  85. <div class="body">
  86. <div class="section" id="concepts">
  87. <h1>Concepts<a class="headerlink" href="#concepts" title="Permalink to this headline">¶</a></h1>
  88. <div class="section" id="structure">
  89. <h2>Structure<a class="headerlink" href="#structure" title="Permalink to this headline">¶</a></h2>
  90. <p>The Framework is in two parts</p>
  91. <ol class="arabic simple">
  92. <li>Server-side - in Python</li>
  93. <li>Client-side - in Javascript</li>
  94. </ol>
  95. <p>The server-side framework contains all the logic for setting up the user session,
  96. co-ordinating data between the user and managing roles and permissions.</p>
  97. <p>The client-side renders all the widgets like menus, toolbars, forms, report builder etc and manages
  98. data from the back end using AJAX</p>
  99. </div>
  100. <div class="section" id="developing-an-application">
  101. <h2>Developing an Application<a class="headerlink" href="#developing-an-application" title="Permalink to this headline">¶</a></h2>
  102. <p>Post installation, the application can be completely developed from the Browser. The Browser is the
  103. in-built IDE for development. A usual development contains of the following steps</p>
  104. <blockquote>
  105. <ol class="arabic simple">
  106. <li>Designing of the database &amp; input forms - <a class="reference external" href="glossary.html#term-doctype"><em class="xref">DocType</em></a></li>
  107. <li>Designing of the reports - <a class="reference external" href="glossary.html#term-report-builder"><em class="xref">Report Builder</em></a></li>
  108. <li>Designing of the navigation and other pages - <a class="reference external" href="glossary.html#term-page"><em class="xref">Page</em></a></li>
  109. <li>Creating and setting users and roles</li>
  110. <li>Writing custom logic, events</li>
  111. </ol>
  112. </blockquote>
  113. <p>See next section for how to build a new app.</p>
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. <div class="clearer"></div>
  120. </div>
  121. <div class="related">
  122. <h3>Navigation</h3>
  123. <ul>
  124. <li class="right" style="margin-right: 10px">
  125. <a href="genindex.html" title="General Index"
  126. >index</a></li>
  127. <li class="right" >
  128. <a href="modindex.html" title="Global Module Index"
  129. >modules</a> |</li>
  130. <li class="right" >
  131. <a href="build_app.html" title="2. Building an Application"
  132. >next</a> |</li>
  133. <li class="right" >
  134. <a href="webnotes_intro.html" title="Web Notes Framework"
  135. >previous</a> |</li>
  136. <li><a href="index.html">Documentation</a> &raquo;</li>
  137. <li><a href="intro.html" >1. Introduction</a> &raquo;</li>
  138. </ul>
  139. </div>
  140. <div class="footer">
  141. &copy; Copyright 2010, Rushabh Mehta.
  142. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.3.
  143. </div>
  144. </body>
  145. </html>