Displaying 20 results from an estimated 1000 matches similar to: "Any plans to switch wxruby-swig to using rexml?"
2004 Aug 20
8
wxruby-swig: where does wxclasses-2.4.2.xml comes from?
Was trying to understand more about the internals of wxruby-swig, where
does the big chunk of XML comes from? I saw something similiar in
Python, is that massaged out of there?
The codes produced by extractxml.rb and wxclasses-2.4.2.xml is quite
different from the original header files. Just for example the WxDialog
class.
OnXXX are non-virtual in WxWidgets, but virtual in wxruby-swig
2004 Aug 25
3
wxclasses-2.4.2.xml
I couldn''t find the original tex document that the author of the xml
file converted from. Anyone knows where it is?
I am toying with the idea of _not using_ the xml file. Either getting
the wx header files thru SWIG (I assume you guys have thought about this
before already, any specific problems?), or continue with the template
generator in the current wxruby-4.0.
The RUBY port of
2004 Sep 18
10
wxruby-swig: Converting to REXML
Since I''m setting up my development environment on a new system, I
figure now is the time to get rid of one of the extra dependencies: NQXML.
It appears that REXML can now parse the whole classes xml file in about
20 seconds on this machine, which is a huge improvement over the many,
many minutes it used to take. So I am now updating extract.rb to use
REXML instead of NQXML.
2004 Apr 17
1
wxruby-swig progress report
Tonight, I generated a full set of almost 400 swiggable .h files, one
for each wxWidgets class. I used the big xml file that I mentioned
earlier, which itself was (apparently) scraped from the wxWidgets html
help files.
Several interesting notes:
1. REXML took forever to parse the 2.5 meg xml file. I didn''t want to do
stream processing, and hoped to stay with a pure-ruby solution,
2004 Aug 19
0
ruby-swig, looked so much nicer
Hi,
Just scanned thru the wxruby-swig source, looked so much better compared
to the wxruby-0.4.0, for one, now the on_xxx functions are available and
can be overloaded by child classes. I will try to play more with it and
see what I can come up with.
I am actually in the process of learning Visual C++.NET using this book
called "Visual C++ .NET Bible". Just after I found out about
2004 Aug 27
4
SWIG Bug
In trying to add wxTextCtrl to wxruby-swig, I''ve been running into a
problem with the argument conversion that appears to be a SWIG director
bug. It is tied to multiple inheritance, and is related to SWIG
specifically making director''s ''initialize'' take a first argument, but
because ''initialize'' is static there isn''t a self value
2004 Sep 18
4
wxruby-swig problem: MDIChildFrame::Maximize
I just grabbed the latest wxruby-swig from cvs and tried to compile it
(without enabling the SWIG step) on my gentoo Linux box. I get:
g++ -c -I/usr/lib/wx/include/gtk2-2.4 -DGTK_NO_CHECK_CASTS -D__WXGTK__
-D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -O2 -march=athlon-xp -fPIC -I
/usr/lib/ruby/gems/1.8/gems/rake-0.4.8/bin -I
/usr/lib/ruby/gems/1.8/gems/rake-0.4.8/lib -I
2004 Aug 19
28
Documents, Views and DocManagers
Hi,
Are there any effort in making wxDocument, wxView, etc types of classes
avaiable under wxRuby? For supporting SDI/MDI architecture.
Cheers,
Phuah Yee Keat
2006 Feb 01
4
REXML::ParseException - but the feed IS valid
I am using Ruby feedparser and when I try to parse this feed:
http://feeds.feedburner.com/Mobilecrunch
I get an error:
REXML::ParseException: Declarations can only occur in the doctype
declaration.
This feed does validate at feedvalidator.org. Any idea why it would raise
an exception?
Thanks,
eduard
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2008 Jan 02
3
REXML::Comment:Class
I have this field in my app where a logged in user can enter a comment,
but when I click on the link bringing me to that page I get the
following error message:
undefined method `table_name'' for REXML::Comment:Class
I am doing some encrypting that has an ''include REXML'' statement but
when I comment that out I still get this error. Does anyone know where
this is coming
2008 Oct 15
5
REXML vs libxml
Hi all,
I''ve been looking at the performance of my fb app and one glaring issue
seems to be with the parsing speed of rexml in processing the results. Has
anyone looked into porting the facebooker parser from rexml to libxml? If
not, any reason I shouldn''t try?
Thanks!
Yu-Shan.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Aug 14
9
Rescuing from REXML::ParseException
Hello,
When I call an action with some invalid XML or JSON data a parse
exception gets raised from within Rails/Ruby (REXML or
ActiveSupport::JSON). The problem that I''ve got is how to handle these
exceptions. In my application_controller.rb I have the following for
debugging purposes:
def rescue_action_in_public(exception)
respond_to do |request|
request.all { render :text =>
2006 Jan 08
2
ICONV and REXML
Hi all. I''m having trouble getting REXML to play nicely with an RSS feed
that uses an encoding type called WINDOWS-1250.
My application works when I comment out the references to the lines that
utilize the REXML library.
After visiting my app and being told that Rails could not start properly, my
server.log file says:
FastCGI: comm with server
2007 Sep 29
2
REXML - XML query only returning one (last) result
I''m really new to Ruby on Rails, and I''m trying to read an XML file
with REXML. No matter what I try, I am only getting the last result
returned from my query. I should be getting 365 results. Here is the
code:
include REXML
require ''rexml/document''
require ''rexml/xpath''
class MakeFootprintController < ApplicationController
def index
2010 Aug 05
7
Search large XML file -- REXML slower than a slug, regex instantaneous
Got a question hopefully someone can answer -
I am working on functionality to match on certain nodes of a largish (65mb)
xml file. I implemented this with REXML and was 2 minutes and counting
before I killed the process. After this, I just opened the console and
loaded the file into a string and did a regex search for my data -- the
result was almost instantaneous.
The question is, if I can get
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)
2007 Jun 07
1
Undefined method `register'' for REXML::Encoding:Module
Has anyone seen the below error before?
It appears to only occur when Puppet runs automatically (i.e. a "puppetd
--test" doesn''t cause it). I have recently installed new Ruby rpms on
the server and I''m guessing that I may have left out something when I
built the RPMS (based on FC7 SRPM).
> -----Original Message-----
> From: report@melrhweb1.nmh-au
2007 Jul 14
1
Very basic question about REXML
Hello Everybody,
I have pretty basic question abut REXML. I want to put the String "John doe" in titles array, if attribute name is equal to "93". Please see the code below. I could not find how to do it.. any help would be very appriciated.
Here is the XML i am trying to parse
<entrydata columnnumber="2" name="93">
<text>John
2007 Feb 07
2
Quick XPath question (REXML)
All,
If I have the following (assume that xml contains a valid REXML Document
and that the root of the xml is way above any <tr> elements in the
document):
just_rows = xml.elements["//tr[starts_with(@id,
''xdgDataRow_grid_container_'')]"]
shouldn''t just_rows contain _all_ of the <tr> elements whose id
attributes start_with
2004 Apr 23
11
Building wxruby-swig for Mac
0.0.5 sure gets the Mac build a lot further.
There''s a bug in the wxMac-2.4.2 distribution that I''m running into:
wx-config wants to invoke a program in the source directory at link
time. That''s ugly in itself, but it tries to use a variable
${top_srcdir} to accomplish this, and it''s apparently empty. It tries
to invoke