示例#1
0
 def get(self):
    p = Page()
    p.title = 'My Page!'
    p.css = 'css/main.css'
    p.body = "Miss Piggy is aweful!"
    p.update()
    self.response.write(p.whole_page)
示例#2
0
    def get(self):
        p = Page()
        p.title = "My page!"
        p.css = "css/style.css"
        p.body = "Miss Piggy likes Kermit De Frog!" #modify body element

        self.response.write(p.whole_page)
示例#3
0
 def get(self):
     p = Page()
     p.title = "My Page"
     p.css = "css/style.css"
     p.body = "this is the body"
     
     self.response.write(p.whole_page)
示例#4
0
 def get(self):
     p = Page()
     p.title = "My Page"
     p.css = "/css/style.css"
     p.body = "Changer"
     p.update()
     self.response.write(p.whole_page)
示例#5
0
文件: main.py 项目: NenaH77/DPW
 def get(self):
     p = Page()
     p.title = "My page!" #Setter was created so we could change
     p.css = "css/style.css"
     p.body = "Miss Piggy likes Kermit de Frog!"
     p.update()
     self.response.write(p.whole_page)
示例#6
0
 def get(self):
     p = Page()
     p.title = "My page!"
     p.css = "css/style.css"
     p.body = "Miss Piggy likes Kermit De Frog!  "
     #p.update()
     self.response.write(p.whole_page)
示例#7
0
    def get(self):
        p = Page()
        p.title ="My page"
        p.css ="css/styles.css"
        p.body = "Miss Piggy like Kermit De Frog"

        self.response.write(p.whole_page)
示例#8
0
    def get(self):
        p = Page()
        p.title = "My page"
        p.css = "css/styles.css"
        p.body = "Miss Piggy like Kermit De Frog"

        self.response.write(p.whole_page)
示例#9
0
文件: main.py 项目: kingmfs14/DPW1405
 def get(self):
     p = Page()
     p.title = 'My Page!'
     p.css = 'css/style.css'
     p.body = 'Miss Piggy likes Kermit de Frog'
     p.update()
     self.response.write(p.whole_page)
示例#10
0
 def get(self):
     #self.response.write('Hello world!')
     p = Page()
     p.title = "My Page"
     p.css = "css/style.css"
     p.body = "This is Stacy's Python Example"
     #self.response.write(p.print_out())
     p.update()
     self.response.write(p.whole_page)
示例#11
0
 def get(self):
     #self.response.write('Hello world!')
     p = Page()
     p.title = "My Page"
     p.css = "css/style.css"
     p.body = "This is Stacy's Python Example"
     #self.response.write(p.print_out())
     p.update()
     self.response.write(p.whole_page)
示例#12
0
 def get(self):
     p = Page()
     p.title = "My page!"
     p.css = "css/style.css"
     p.body = "Miss Piggy likes Kermit de Frog" #this will replace the body text below in self.body
     #print p.print_out()#this will print out in the google engine console
     #self.response.write(p.print_out())# this will print out in browser (removed for getter/setter example)
    # p.update() #replacing the above #self.response......
     #let's remove p.update() from here and add to main.py to have it auto update whenever data changes; it won't be p.update it will be self.update over there
     self.response.write(p.whole_page)
示例#13
0
    def get(self):
        p = Page()   #I want to make an instance of page
        p.li = [['home'],['boy'],['girl'],['nature'],['animals']]
        p.css = "css/styles.css"
        #d = Data()

        #d.home = self.request.GET['home']
        #d.boy = self.request.GET['boy']
        #d.girl = self.request.GET['girl']
        #d.nature = self.request.GET['nature']
        #d.animals = self.request.GET['animals']
        self.response.write(p.print_out())
示例#14
0
文件: main.py 项目: HeadShotBoom/DPWP
    def get(self):
        # Establishes p as referring to the Page class
        p = Page()
        # p.title uses the title setter in the Page class to set the value of title, the line below is similar
        p.title = "Encapsulated Calculator"
        p.css = "css/styles.css"

        # c1 uses the Cameras class to assemble an object with the following attributes and sets their values
        # c2=c5 is identical in function
        c1 = Cameras()
        c1.name = "Canon 5d3"
        c1.body_cost = 3000
        c1.lens_cost = 5000
        c1.accessories_cost = 1000
        c1.quality = "High"
        c1.calc_value()

        c2 = Cameras()
        c2.name = "Nikon D800"
        c2.body_cost = 2500
        c2.lens_cost = 1500
        c2.accessories_cost = 200
        c2.quality = "Low"
        c2.calc_value()

        c3 = Cameras()
        c3.name = "Leica M9"
        c3.body_cost = 100
        c3.lens_cost = 500
        c3.accessories_cost = 100
        c3.quality = "Medium"
        c3.calc_value()

        c4 = Cameras()
        c4.name = "Pentax MX1"
        c4.body_cost = 2000
        c4.lens_cost = 200
        c4.accessories_cost = 50
        c4.quality = "High"
        c4.calc_value()

        c5 = Cameras()
        c5.name = "GoPro Hero5 Platinum"
        c5.body_cost = 10000
        c5.lens_cost = 0
        c5.accessories_cost = 10
        c5.quality = "Low"
        c5.calc_value()

        # This establishes a variable that consolisates all c1-c5 objects
        all_these_cameras = [c1, c2, c3, c4, c5]


        # Checks if there is an instance of "cameras" in the request pushed from the browser
        if "cameras" in self.request.GET:
            # Uses a value in the request to determine which cX object I am requesting
            # and sets just that object to the current_camera variable in Page class.
            p.current_camera = all_these_cameras[int(self.request.GET["cameras"])]
            # Writes the entire contents of whole_page variable in Page class to the browser
            self.response.write(p.whole_page)
        else:
            # Writes the info to the browser even if a request hasnt been made.
            self.response.write(p.whole_page)
示例#15
0
文件: main.py 项目: cferguson1/DPW
 def get(self):
     p = Page()
     p.title = "My page!"
     p.css = "css/style.css"
     p.body = "Hello World"
     self.response.write(p.whole_page)
示例#16
0
    def get(self):
        h = hello()
        p = Page()
        p.title = "My New Page"
        p.css = "css/styles.css"
        p.update() #referencing my update class from pages
        h.update_this()

        # I will create an application that calculates the remaining storage for different users

        #now I will hard code the values for each data object



        m = Storage()
        m.pictures = 5
        m.videos = 10
        m.documents = 1
        m.music = 3
        m.apps = 4

        #write the values to the page

        if self.request.GET:
            total = self.request.GET['totalStorage']
            self.response.write(h.user_page_update + "Total storage used is  " + total + " GB <br/> There is  " + str(m.final_storage) + " GB of storage remaining")

        else:
            self.response.write(p.user_page)  #writing the user_page which has has all the html for my application

    #now I am going create the remaining users

        #now I will hard code the values for each data object
        t = Storage()
        t.pictures = 10
        t.videos = 10
        t.documents = 1
        t.music = 20
        t.apps = 7
        #write the values to the page
        # self.response.write(" <br/> Todd has  " + str(t.final_storage) + " GB of storage remaining") #writing the user_page which has has all the html for my application





#now I will hard code the values for each data object
        n = Storage()
        n.pictures = 1
        n.videos = 4
        n.documents = 1
        n.music = 9
        n.apps = 7
        #write the values to the page
        # self.response.write(" <br/> Nancy has  " + str(n.final_storage) + " GB of storage remaining") #writing the user_page which has has all the html for my application


#now I will hard code the values for each data object
        h = Storage()
        h.pictures = 18
        h.videos = 10
        h.documents = 1
        h.music = 6
        h.apps = 7
        #write the values to the page
        # self.response.write(" <br/> Henry has  " + str(h.final_storage) + " GB of storage remaining") #writing the user_page which has has all the html for my application


#now I will hard code the values for each data object
        j = Storage()
        j.pictures = 6
        j.videos = 4
        j.documents = 1
        j.music = 7
        j.apps = 2
示例#17
0
文件: main.py 项目: jstanbridge/DPWP
 def get(self):
     p = Page()
     p.title = "MyPage"
     p.css = "css/styles.css"
     self.response.write(p.whole_page)
示例#18
0
文件: main.py 项目: hb08/DPWP
 def get(self):
     p = Page()
     p.title = "My Page!"
     p.css = "css/style.css"
     p.body = "Apples!"
     self.response.write(p.whole_page)
示例#19
0
 def get(self):
     p = Page()
     p.title = "My page!"
     p.css = "css/style.css"
     p.body = "Hello World"
     self.response.write(p.whole_page)
示例#20
0
文件: main.py 项目: Camski1/DPWP
 def get(self):
     p = Page()
     p.body = "Hello!"
     p.title = "My Page!!!!!"
     p.css = "css/main.css"
     self.response.write(p.whole_page)
示例#21
0
 def get(self):
     p = Page()
     p.title = "My page!"
     p.css = "css/styles.css"
     p.update()
     self.response.write(p.whole_page)
示例#22
0
 def get(self):
     p = Page()
     p.title = "My page!"
     p.css = "css/styles.css"
     p.body ="Miss Piggy likes Chocolate!" #modify's self.body
     self.response.write(p.whole_page)