Example #1
0
 def GET(self):
     '''
     返回视图
     '''
     parames = model.BasePara()
     parames.title = "fixMath"
     parames.mathjax = False
     return RENDER.home(parames)
Example #2
0
 def GET(self, url):
     '''
     返回视图
     '''
     if url in ['', '/']:
         pass
     parames = model.BasePara()
     parames.title = "AsciiMath"
     parames.keyword = ""
     parames.description = ""
     parames.currentmodule = fixmathproperty.CurrentPage().source
     parames.bannerstylename = fixmathproperty.CurrentStyleName().source
     return RENDER.modules.source.index(parames)
Example #3
0
 def GET(self, url):
     '''
     返回视图
     '''
     if url in ['', '/']:
         pass
     parames = model.BasePara()
     parames.title = "Analytic Geometry"
     parames.keyword = "Analytic Geometry"
     parames.description = "借助于解析式进行图形研究的几何学,定义图形的概念与参数"
     parames.currentmodule = fixmathproperty.CurrentPage().geometry
     parames.bannerstylename = fixmathproperty.CurrentStyleName().geometry
     return RENDER.modules.geometry.index(parames)
Example #4
0
 def GET(self, url):
     '''
     返回视图
     '''
     if url in ['', '/']:
         pass
     parames = model.BasePara()
     parames.title = "algebra"
     parames.keyword = "Algebra"
     parames.description = "研究线性空间(向量空间)、模和其上的线性变换以及与之有关的问题"
     parames.currentmodule = fixmathproperty.CurrentPage().algebra
     parames.bannerstylename = fixmathproperty.CurrentStyleName().algebra
     return RENDER.modules.algebra.index(parames)
Example #5
0
 def GET(self, url):
     '''
     返回视图
     '''
     if url in ['', '/']:
         pass
     parames = model.BasePara()
     parames.title = "inequality-with-absolute-value"
     parames.keyword = ""
     parames.description = "从数轴上看,数 `a` 的绝对值 `|a|` 就是点 `a` 到原点的距离"
     parames.currentmodule = fixmathproperty.CurrentPage().calculus
     parames.bannerstylename = fixmathproperty.CurrentStyleName(
     ).inequality_with
     return RENDER.modules.calculus.inequality_with(parames)
Example #6
0
 def GET(self, url):
     '''
     返回视图
     '''
     if url in ['', '/']:
         pass
     parames = model.BasePara()
     parames.title = "real-numbers-and-their-properties"
     parames.keyword = ""
     parames.description = "研究的基本对象是定义在实数集上的函数"
     parames.currentmodule = fixmathproperty.CurrentPage().calculus
     parames.bannerstylename = fixmathproperty.CurrentStyleName(
     ).real_numbers
     return RENDER.modules.calculus.real_numbers(parames)
Example #7
0
 def GET(self, url):
     '''
     返回视图
     '''
     if url in ['', '/']:
         pass
     parames = model.BasePara()
     parames.title = "the-last-volume"
     parames.keyword = "Calculus"
     parames.description = "研究的基本对象是定义在实数集上的函数"
     parames.currentmodule = fixmathproperty.CurrentPage().calculus
     parames.bannerstylename = fixmathproperty.CurrentStyleName(
     ).the_last_volume
     return RENDER.modules.calculus.the_last_volume(parames)
Example #8
0
 def GET(self, url):
     '''
     返回视图
     '''
     if url in ['', '/']:
         pass
     parames = model.BasePara()
     parames.mathjax = False
     parames.title = "关于我们"
     parames.keyword = ""
     parames.description = ""
     parames.currentmodule = fixmathproperty.CurrentPage().home
     parames.bannerstylename = fixmathproperty.CurrentStyleName().home
     return RENDER.about(parames)
Example #9
0
 def GET(self, url):
     '''
     返回视图
     '''
     if url in ['', '/']:
         pass
     parames = model.BasePara()
     parames.mathjax = False
     parames.title = "巴科斯(Backus-Naur)范式"
     parames.keyword = ""
     parames.description = ""
     parames.currentmodule = fixmathproperty.CurrentPage().wiki
     parames.bannerstylename = fixmathproperty.CurrentStyleName().wiki
     return RENDER.modules.wiki.backus_naur(parames)
Example #10
0
 def GET(self, url):
     '''
     返回视图
     '''
     if url in ['', '/']:
         pass
     parames = model.BasePara()
     parames.mathjax = True
     parames.title = "WIKI"
     parames.keyword = ""
     parames.description = ""
     parames.currentmodule = fixmathproperty.CurrentPage().wiki
     parames.bannerstylename = fixmathproperty.CurrentStyleName().wiki
     return RENDER.modules.wiki.index(parames)