Changes between Version 7 and Version 8 of Internal/OMF-Note
- Timestamp:
- Mar 24, 2010, 3:01:57 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Internal/OMF-Note
v7 v8 7 7 2. In method register in ogs.rb add root path to server content 8 8 {{{ 9 #Lets add root path to static server/service content10 cfg.merge!('varPath' => "#{DEF_VAR_PATH}")9 #Lets add root path to static server/service content 10 cfg.merge!('varPath' => "#{DEF_VAR_PATH}") 11 11 }}} 12 12 3. Add file handler to public_html directory in startServer method. This is necessary for grid status front-end and for new scheduler developing. … … 19 19 4. 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. 20 20 {{{ 21 path = DEF_VAR_PATH + "/public_html/favicon.ico"21 path = DEF_VAR_PATH + "/public_html/favicon.ico" 22 22 @@server.mount("/favicon.ico", HTTPServlet::FileHandler, path ) { 23 23 raise HTTPStatus::NotFound, "#{path} not found." 24 24 } 25 25 }}} 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.26 5. 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. 27 27