0
votes
4answers
60 views
Best way to parse a YAML file.
What is the best way to parse a YAML file in Python?
0
votes
2answers
72 views
YAML Encoding of Malformed String, Model Serialization Issues
I've isolated a problem with Ruby on Rails where a model with a serialized column is not properly loading data that has been saved to it.
What goes in is a Hash, and what comes ou …
4
votes
2answers
359 views
Pure Javascript YAML library that supports both dump and load?
Does such a thing exist for YAML (aka YAML)?
If this existed at one time, it must have been obliterated because the latest search turned up nada. It looks like there are plenty of …
0
votes
1answer
42 views
PHP Doctrine - YAML syntax help. Default value for many to many relationship?
Hi, I have the following YAML schema for organising users in Doctrine:
Person:
tableName: people
columns:
id:
type: integer
primary: true
autoincrement: …
1
vote
3answers
48 views
What is the difference between YAML and JSON ; when prefer one than another
Hi,
When we prefer to use YAML over JSON and vice versa considering following things :
Performance(the encode/decode time)
memory consumption.
expression clarity
library availab …
1
vote
3answers
20 views
How to express int arry[6] in YAML
Hi ,
I have a type int arr[6], and the value is {1,2,3,4,5,6}. How should I express this data using YAML?
0
votes
2answers
37 views
Read a YAML file using a C script
Hi,
I would like to read a thin YAML file using a simple C program. I beleve the best way for this is to use the follow library: Pyyaml.org.
After reading the wiki page, I have t …
0
votes
0answers
23 views
Generated Doctrine models respect case, but generated Yaml does not
Just getting started with Doctrine ORM for PHP (v1.1.5) and ran into something unexpected.
I am generating models from the db (MySQL 4) using:
Doctrine::generateModelsFromDb($pat …
1
vote
4answers
664 views
Parse YAML Files in C/C++
I cant believe i spent two hours and not found a solution. I want a simple tutorial to show me to load a yaml file and parse the data. Expat style would be great but any solution t …
1
vote
6answers
163 views
Why do so many apps/frameworks keep their configuration files in an un-executed format?
Many frameworks keep their configuration files in a language different from the rest of the program. Eg, Appengine keeps the configuration in yaml format. to compare, DJango settin …
3
votes
3answers
441 views
How to get string Objects instead Unicode ones from JSON in Python?
I'm using Python (Python 2.5.2 on Ubuntu 8.10) to parse JSON from (ASCII encoded) text files. When loading these files with json (simplejson), all my string values are cast to Unic …
1
vote
1answer
71 views
Is there already a YAML library/parser for MATLAB?
I want to use YAML to communicate some data across multiple languages. (Think of it as "language-independent serialization".) One of these languages is MATLAB, but I can't seem t …
1
vote
2answers
49 views
Data-driven tests in Cucumber
I've got to test a message-routing application, whose functionality is broadly as follows:
- message gets sent to app
- app examines message
- message gets forwarded somewhere, bas …
-1
votes
0answers
85 views
Ruby YAML problem when deserializing a nested object structure
Hello guys,
I have 3 classes that have the following relationship:
Battlefield have an array of teams.
BattleTeam have an array of members, and a reference to the Battlefield.
…
0
votes
1answer
33 views
Consume REST YAML web service in ASP.NET
I'm using PandaStream, which sends a REST notification as YAML to our ASP.NET app. The web service I have chokes and returns 500 because it attempts to parse the content as XML. Ho …
