search for: fimag

Displaying 4 results from an estimated 4 matches for "fimag".

Did you mean: imag
2005 Nov 03
2
simple menu limitations
...WSP PXE Boot Menu # TIMEOUT 200 LABEL bartpe MENU LABEL Build 12 KERNEL /STARTROM.0 APPEND keeppxe LABEL 11dnet MENU LABEL Build 11DNET beta (works on 200MB ram) KERNEL 1/STARTROM.0 APPEND keepxe LABEL imgctr MENU LABEL Image Center (experimental) KERNEL memdisk APPEND keeppxe initrd=fimages/pqimgctr.vfd LABEL localboot MENU LABEL Localboot MENU DEFAULT LOCALBOOT 0 LABEL locksmith3com MENU LABEL Locksmith 3com KERNEL memdisk APPEND keeppxe initrd=fimages/locksmith3com.ima LABEL locksmithbroadcom MENU LABEL Locksmith Broadcom KERNEL memdisk APPEND keeppxe initrd=fimages/lo...
2006 Jun 26
0
DBI question. How do I load a database with data parsed from REXML?
...y from ", @id=5337, @fblurb="burb", @ntype="news type here", @copy="Copyright \302\251 2006 ", @source="source", @body="body", @archive=nil, @att="attribution here", @blurb="Signs and symptoms of food poisoning", @post=nil, @fimage=nil, @head="Health Tip: Eaten Bad Food?">] I have a database schema that looks like this: Code: create table Newsfeeds ( ArticleId varchar(100), PostingDate date, ArchiveDate date, NewsType varchar(100), Headline...
2006 Jun 24
1
Parsing XML with REXML problem
Why can it not find my object? What am i missing here? Here is my code: require ''rexml/document'' include REXML # classes to represent the objects and relationships in the xml file class Article attr_accessor :id, :post, :archive, :ntype, :head, :blurb, :body, :fblurb, :fimage, :att, :source, :copy, :brand end # the base parser class BaseXMLParser def initialize(filename) @raw_xml = File.open(filename).read @newsfeed = [] end end # DOM-based parsing class FeedXMLParser < BaseXMLParser def get_newsfeed doc = Document.new(@raw_xml) XPath.each(...
2006 Jun 24
0
Best approach for loading a data object into mysql?
...y from ", @id=5337, @fblurb="burb", @ntype="news type here", @copy="Copyright \302\251 2006 ", @source="source", @body="body", @archive=nil, @att="attribution here", @blurb="Signs and symptoms of food poisoning", @post=nil, @fimage=nil, @head="Health Tip: Eaten Bad Food?">] I have a database schema that looks like this: create table Newsfeeds ( ArticleId varchar(100), PostingDate date, ArchiveDate date, NewsType varchar(100), Headline text,...