Questions tagged [gumbo]

Gumbo is an implementation of the HTML5 parsing algorithm implemented as a pure C99 library with no outside dependencies. It's designed to serve as a building block for other tools and libraries such as linters, validators, templating languages, and refactoring and analysis tools.

Goals & features:

  1. Fully conformant with the HTML5 spec.
  2. Robust and resilient to bad input.
  3. Simple API that can be easily wrapped by other languages.
  4. Support for source locations and pointers back to the original text.
  5. Support for fragment parsing.
  6. Relatively lightweight, with no outside dependencies.
  7. Passes all html5lib tests, including the template tag.
  8. Tested on over 2.5 billion pages from Google's index.
39 questions
0
votes
1 answer

Gumbo Apache Storm Monitoring Metrics

I am trying to configure Gumbo for storm topology monitoring from here There is not clear example or usage given on the site, need some clarification on what are the parameter and where to add this code given on the site above MonitorClient mclient…
Pramod
  • 129
  • 1
  • 2
  • 14
0
votes
0 answers

gumbo-d bindings with DUB

I'm trying to use gumbo-d in a project however dub is failing. Here's the dub output: Building: myproject (Default) Performing main compilation... dub build "myproject" "--build=plain" Building package myproject in…
MattCochrane
  • 2,900
  • 2
  • 25
  • 35
0
votes
1 answer

Gumbo parser in C++ Builder XE6

I'm trying to use the HTML parser - Gumbo (written in C) in my C++ Builder XE6 project. When I compile, I get many errors (E2140 Declaration is not allowed here etc.), which appear to be coming from the file char_ref.rl. I've tried a lot to avoid…
mvezinet
  • 99
  • 9
0
votes
1 answer

Can't interact with children of an itemRenderer in Flex 4 Gumbo

I thought this would be pretty easy but I'm running into all sorts of problems with this. I have an ItemRenderer with a an image and two labels. I want to assign separate mouse events to the image and two labels. It seems like the item renderer is…
ChickensDontClap
  • 1,871
  • 4
  • 22
  • 39
0
votes
1 answer

Air: Possible? Writing into installed application package

This is probably a bad idea or whatever you wan't to call it. Nevertheless, curious to know if Air can write inside it's own installed package. I'm referring to the OSX '.app' files found in great numbers in the applications folder. Since every one…
tommy
  • 39
  • 8
0
votes
1 answer

Why is the compiler complaining about a possibly undefined property

I have a very simple practice program for Flex 4 ( Gumbo ). package { import mx.controls.ColorPicker; import mx.controls.Label; import mx.events.ColorPickerEvent; import flash.display.Sprite; public class testClass extends…
kervin
  • 11,672
  • 5
  • 42
  • 59
0
votes
1 answer

Flex Multi Service call problem

I tried to call a service using a for loop and it seems that only the first service call seems to work. My guess is that once a service is called it needs to wait until result event until it can be called again. How can I workaround this? Waiting…
Pii
  • 301
  • 4
  • 15
0
votes
1 answer

Changing css properties for selector at runtime

I have a css that defines de skin-class for a custom component, like this : view|PlaceHolderView { skin-class:ClassReference('view.skin.PlaceHolderSkin'); } Is there a way to change that value at runtime, so that all instances of the component…
sharvey
  • 7,635
  • 7
  • 48
  • 66
0
votes
1 answer

Syntax/error checking breaks in FlexBuilder/Flashbuilder with class libraries over Samba?

We have our class libraries on a shared server we access via Samba (and ssh for command line). Sadly, several features seem to fail in both Flex Builder and Flash Builder/Gumbo with this setup. For example, we no longer get automatic syntax and…
1 2
3