Changes between Version 7 and Version 8 of Internal/OMF-Note


Ignore:
Timestamp:
Mar 24, 2010, 3:01:57 PM (14 years ago)
Author:
Olivera Tosic
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Internal/OMF-Note

    v7 v8  
    772. In method register in ogs.rb add root path to server content
    88{{{
    9 #Lets add root path to static server/service content
    10 cfg.merge!('varPath' => "#{DEF_VAR_PATH}")
     9  #Lets add root path to static server/service content
     10  cfg.merge!('varPath' => "#{DEF_VAR_PATH}")
    1111}}}
    12123. Add file handler to public_html directory in startServer method. This is necessary for grid status front-end and for new scheduler developing.
     
    19194. Check location of favicon.ico file and put correct path in file handler to /favicon.ico. Currently, on internal1 favicon.ico is located under /public_html directory and path is changed to point to that location.
    2020{{{
    21 path = DEF_VAR_PATH + "/public_html/favicon.ico"
     21  path = DEF_VAR_PATH + "/public_html/favicon.ico"
    2222  @@server.mount("/favicon.ico", HTTPServlet::FileHandler, path ) {
    2323    raise HTTPStatus::NotFound, "#{path} not found."
    2424  }
    2525}}}
    26 5. Content of public_html directory currently is not part of omg-aggmgr r. It contains grid status front-end application and developing ajax files for new scheduler. In a case of moving, re-installing omg-aggmgr this directory should be saved.
     265. Content of public_html directory currently is not part of omg-aggmgr svn project. It contains grid status front-end application and developing ajax files for new scheduler. In a case of moving, re-installing omg-aggmgr this directory should be saved.
    2727