qsos-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qsos-commits] qsos/libs/ruby/QSOS-Document/lib/qsos document.rb


From: Romain PELISSE
Subject: [Qsos-commits] qsos/libs/ruby/QSOS-Document/lib/qsos document.rb
Date: Thu, 22 Jun 2006 15:26:33 +0000

CVSROOT:        /sources/qsos
Module name:    qsos
Changes by:     Romain PELISSE <rpelisse>       06/06/22 15:26:33

Removed files:
        libs/ruby/QSOS-Document/lib/qsos: document.rb 

Log message:
        Change directory tree

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qsos/libs/ruby/QSOS-Document/lib/qsos/document.rb?cvsroot=qsos&r1=1.1&r2=0

Patches:
Index: document.rb
===================================================================
RCS file: document.rb
diff -N document.rb
--- document.rb 27 Apr 2006 12:07:45 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,474 +0,0 @@
-require './model/sheet.rb'
-require './model/element.rb'
-require './model/searchQuery.rb'
-
-require './transformation/XMLreader.rb'
-
-module QSOS
-class Document 
-
-       attr    :sheet
-
-       #
-       #       This convenient constructor allow to build a QSOSLib object
-       #       already with a specified file ( or a specified url).
-       #
-    def initialize(url=nil)
-       if ! url.nil?
-               self.load(url)
-       end
-       @sheet = Sheet.new
-       
-       @QSOS_SPECIFIC_FORMAT = "qsosspecificformat"
-       @QSOS_APP_FAMILY = "qsosappfamily"
-       @QSOS_FORMAT = "qsosformat"
-       @DEMO_URL = "demourl"
-       @APPNAME = "appname"
-       @COMMENT = "comment"
-       @AUTHORS = "authors"
-       @NAME = "name"
-       @EMAIL = "email"
-       @SCORE = "score"
-       @RELEASE = "release"
-       @LICENCE_ID = "licenseid"
-       @LICENCE_LIST = ""
-       
-    end
-    
-    # a search method
-    def search(search)
-       if search.nil?
-               # TODO: Throw an exception
-       end
-       if search.class != SearchQuery
-               #TODO: Throw an exception 
-       end     
-       results = Array.new
-       match?(search.name,@sheet.root,results)
-       return results
-    end 
-    private:search
-    
-    #
-    #  This method allow you to parse the elements tree to find
-    #  a list of elements matching the 'name'. This is a recursive
-    #  method, an the first call, be sure to pass the sheet's root
-    #  as an element to be sure to parse the entire sheet.
-    #  You may or may not initialize the 'results' Array. If you do
-    #  not it'll be initialize, be sure NOT to pass an already existing
-    #  array ( or be sure of what you're doing...)
-    #
-    #  @param name, name of the element search for
-    #  @param element, the current element searched
-    #  @results list of matching elements
-    #  @return none
-    #
-    def match?(name,element,results=Array.new)
-       if      (! name.nil?) && (! element.nil?) && element.class == Element 
-               if results.nil?
-                       results = Array.new
-               end
-               if element.name == name
-                       results.push(element)
-               end
-                       nbChild = -1
-                       while nbChild < element.childs.length
-                               match?(name,element.childs[nbChild += 
1],results)
-                       end     
-       else
-               # TODO : Throw an exception
-       end
-    end
-    private:match?
-       
-       public    
-    def load(url=nil)
-       # TODO : check that url is a valid url
-       if url.nil?
-               # TODO: throw an exception
-       end
-       reader = XMLreader.new
-       @sheet.root = reader.transformFrom(url)
-    end
-       
-        
-        # Allows to get the description number numDesc of the element called 
name.
-        #
-        # @param name the name to search.
-        # @param numDesc int representing the number of the description to 
search.
-        # @return a  corresponding to the description asked.
-        #/
-        def getDescByName(name="",numDesc=0)
-               query = SearchQuery.new
-               query.name = name
-               return self.search(query)[0].getMySelf("desc"+numDesc)
-     end
-        # Allows to set a comment to an element given by his name.
-        # 
-        # @param name the name of the element.
-        # @param comment the comment to set.
-        #/
-        def setCommentByName(name,comment)
-               query = SearchQuery.new
-               query.name = name
-               item = search(query)[0]
-               if ! item.nil? 
-                       item.setMySelf(comment,@COMMENT)
-               end
-        end
-       
-        # Allows to get the comment on an element.
-        # 
-        # @param name the name of the element to get.
-        # @return a  corresponding to the comment of the element asked.
-        #/
-        def getCommentByName(name)
-               query = SearchQuery.new
-               query.name = name
-               item = search(query)[0]
-               if ! item.nil?
-                       item.getMySelf(@COMMENT)
-               end 
-        end
-        # Allows to get the score of an element.
-        # 
-        # @param name the name of the element.
-        # @return a  representing the score of the Element.
-        #/
-       def getScoreByName(name)
-               query = SearchQuery.new
-               query.name = name
-               item = search(query)[0]
-               if ! item.nil?
-                       return item.getMySelf(@SCORE)   
-               end
-               return nil
-       end
-       #Allows to set the score of an element
-        # 
-        # @param name the name of the element.
-        # @param score a  representing the score to set.
-        #/
-       def setScoreByName(name,score)
-               query = SearchQuery.new
-               query.name = name
-               item = search(query)[0]
-               if ! item.nil?
-                       item.setMySelf(score,@SCORE)    
-               end
-       end
-       #
-        # Allows to get the name of all the authors.
-        # 
-        # @return an Array that contains the names of all the authors.
-        #/
-       def getAuthors()
-               names = Array.new
-               query = SearchQuery.new
-               query.name = "author"
-               authors = search(query)
-               nbAuthor = -1
-               while nbAuthor < authors.length
-                       names.push(authors[nbAuthor += 1].text)
-               end
-               return names    
-       end
-       
-       #       Allows to add an author to the list of authors.
-       # 
-       # @param name the name of the author to add.
-       # @param email the email of the author to add.
-       #
-       def addAuthor(author_name,author_email) 
-               if (! author_name.nil?) && (! author_email.nil?)
-                       query = SearchQuery.new
-                       query.name = @AUTHORS
-                       author = Element.new("","","","",@AUTHORS)
-                       name = Element.new("","","",author_name,@NAME)
-                       author.childs.push(name)
-                       email = Element.new("","","",author_email,@EMAIL)
-                       author.childs.push(email)
-                       authors = search(query)
-                       if ! authors[0].nil?
-                               authors[0].childs.push(author)
-                       end
-                else
-                       # TODO : throw an exception
-                end
-    end
-        # Allows to delete an author.
-        # 
-        # @param name the name of the author to delete.
-        #
-       def delAuthor(name) 
-               query = SearchQuery.new
-               query.name = @AUTHORS
-               authors = search(query)
-               
-    end
-               
-        #Allows to get the application name.
-        # 
-        # @return a  corresponding to the application name.
-        #/
-       def getAppname()
-               query = SearchQuery.new
-               query.name = @APPNAME
-               return self.search(query)[0].text
-       end
-       
-       #
-       #       Allows to set the application name.
-       # 
-       # 
-       #       @param appname the application name to set.
-       #
-       def setAppname(appname)
-               query = SearchQuery.new
-               query.name = @APPNAME
-               item = search(query)[0]
-               if ! item.nil?
-                       item.text = appname
-               else
-                       # throw an exception
-               end
-       end
-       
-        #
-        #      Allows to get the language.
-        # 
-        # @return a  corresponding to the language.
-        #
-       def getLanguage()
-               query = SearchQuery.new
-               query.name = "language"
-               return self.search(query)[0].getMySelf("text")
-       end
-       
-       #
-       #       Allows to set the language.
-       # 
-       # 
-       #       @param language the language to set.
-       #
-       def setLanguage(language)
-               query = SearchQuery.new
-               query.name = "language"
-               item = search(query)[0]
-               if ! item.nil?
-                       item.text = language    
-       end
-       end
-       
-       #
-       # Allows to get the release number.
-       # 
-       # @return a  corresponding to the release number.
-       #/
-       def getRelease()
-               query = SearchQuery.new
-               query.name = @RELEASE
-               return self.search(query)[0].text
-       end
-       #Allows to set the release.
-       # 
-       # 
-       # @param release the release to set.
-       #/
-
-       def setRelease(release)
-               query = SearchQuery.new
-               query.name = @RELEASE
-               item = search(query)[0]
-               if ! item.nil?
-                       item.text = release
-               end
-       end
-       # 
-       #       Not implemented yet 
-       #/
-       def getLicenselist()
-               query = SearchQuery.new
-               query.name = @LICENCE_LIST
-               return self.search(query)[0].text
-    end
-    
-       #
-       #       Allows to get the license Id.
-       # 
-       #       @return a  corresponding to the License Id.
-       #
-       def getLicenseId()
-               query = SearchQuery.new
-               query.name = @LICENCE_ID
-               return self.search(query)[0].text
-       end
-    
-    #
-    #  Allows to set the license Id.
-       # 
-       # 
-       #       @param licenseId, the license Id to set.
-       #
-       def setLicenseId(licenseId)
-               query = SearchQuery.new
-               query.name = @LICENCE_ID
-               return self.search(query)[0].text = licenseId
-       end
-       
-       #
-       #       Allows to get the license Description.
-       # 
-       #       @return a  corresponding to the license Description.
-       #
-       def getLicenseDesc()
-               query = SearchQuery.new
-               query.name = @LICENCE_ID
-               return self.search(query)[0].text               
-       end
-       
-       #
-       #       Allows to set the license Description.
-       # 
-       # 
-       #       @param licensedesc the license Description to set.
-       #
-       def setLicenseDesc(licensedesc)
-       end
-       
-       #
-       #       Allows to get the url.
-       # 
-       #       @return a  corresponding to the url.
-       #
-       def getUrl()
-               query = SearchQuery.new
-               query.name = @DEMO_URL
-               return self.search(query)[0].text
-       end
-       
-       #
-       #       Allows to set the url.
-       # 
-       #       @param url the url to set.
-       #
-       def setUrl(url)
-               query = SearchQuery.new
-               query.name = @DEMO_URL
-               return self.search(query)[0].text = url
-       end
-       
-       #
-       #       Allows to get the description.
-       # 
-       #       @return a  corresponding to the description.
-       #
-       def getDesc()
-               query = SearchQuery.new
-               query.name = @DEMO_URL
-               return self.search(query)[0].desc
-       end
-       #Allows to set the description.
-        # 
-        # 
-        # @param desc the description to set.
-        #/
-       def setDesc(desc)
-               query = SearchQuery.new
-               query.name = @DEMO_URL
-               return self.search(query)[0].desc = desc
-       end
-       
-       #
-       #       Allows to get the demonstration url.
-       # 
-       #       @return a  corresponding to the demonstration url.
-       #
-       def getDemoUrl()
-               query = SearchQuery.new
-               query.name = @DEMO_URL
-               return self.search(query)[0].text
-       end
-       
-       #
-       #       Allows to set the demonstration url.
-       #  
-       #       @param demourl the demonstration url to set.
-       #
-       def setDemoUrl(demourl)
-               query = SearchQuery.new
-               query.name = @DEMO_URL
-               return self.search(query)[0].text = demourl
-       end
-
-       #
-       #       Allows to get the QSOS format.
-       # 
-       #       @return a  corresponding to the QSOS format.
-       #
-       def getQsosformat()
-               query = SearchQuery.new
-               query.name = @QSOS_FORMAT
-               return self.search(query)[0].text
-       end
-       #Allows to set the QSOS format.
-        # 
-        # 
-        # @param qsosformat the QSOS format to set.
-        #/
-       def setQsosformat(qsosformat)
-               query = SearchQuery.new
-               query.name = @QSOS_FORMAT
-               self.search(query)[0].text = @QSOS_FORMAT
-       end
-       #Allows to get the QSOS specific format.
-        # 
-        # @return a  corresponding to the QSOS specific format.
-        #/
-       def getQsosspecificformat()
-               query = SearchQuery.new
-               query.name = @QSOS_SPECIFIC_FORMAT
-               return self.search(query)[0].text
-       end
-       #Allows to set the QSOS specific format.
-        # 
-        # 
-        # @param qsosspecificformat the QSOS specific format to set.
-        #/
-
-       def setQsosspecificformat(qsosspecificformat)
-               query = SearchQuery.new
-               query.name = @QSOS_SPECIFIC_FORMAT
-               self.search(query)[0].text = qsosspecificformat
-       end
-       #Allows to get the application family in QSOS.
-        # 
-        # @return a  corresponding to the application family in QSOS.
-        #/
-       def getQsosappfamily()
-               query = SearchQuery.new
-               query.name = @QSOS_APP_FAMILY
-               return self.search(query)[0].text
-       end
-       #Allows to set the application family in QSOS.
-        # 
-        # 
-        # @param qsosappfamily the application family in QSOS to set.
-        #/
-
-       def setQsosappfamily(qsosappfamily)
-               query = SearchQuery.new
-               query.name = @QSOS_APP_FAMILY
-               self.search(query)[0].text = qsosappfamily
-    end
-        #Allows to write the xml file at the given path. 
-        # This method has a problem since it degrated the xml file (
-        # not the datas but the presentation).
-        # It will be fixed in the next version
-        # 
-        # @param path
-        #/
-       def write(path)
-       end
-end
-end




reply via email to

[Prev in Thread] Current Thread [Next in Thread]