The log exert bellow is result of a error that is caused in the IOMOG Register by loading in the suspect XML bellow.
The XML bellow is the Taxonomy Tree for UnitType
| class Symbol | |
| def to_ccom | |
| self case | |
| when :id_in_source | |
| return "IdInInfoSource" | |
| when :guid | |
| return "GUID" | |
| else | |
| return self.to_s.camelize | |
| end |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <root> | |
| <Entity xsi:type="EntityType"> | |
| <GUID>c014e3c1-0fb2-012e-8f94-549a20e02a6a</GUID> | |
| <Tag>Adapter Plate</Tag> | |
| <Status>1</Status> | |
| </Entity> | |
| </root> |
| #!/bin/bash | |
| sudo dpkg-reconfigure tzdata |
| brew outdated | cut -f 1 -d "(" | xargs brew install |
| git submodule update --merge |
| wget http://download.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm | |
| rpm -Uvh epel-release-5-4.noarch.rpm |
The log exert bellow is result of a error that is caused in the IOMOG Register by loading in the suspect XML bellow.
The XML bellow is the Taxonomy Tree for UnitType
| %define ver 0.4.6 | |
| %define rel 1 | |
| %define jobs 2 | |
| Name: nodejs | |
| Version: %{ver} | |
| Release: %{rel} | |
| Summary: Node's goal is to provide an easy way to build scalable network programs. | |
| Group: Applications/Internet | |
| License: Copyright Joyent, Inc. and other Node contributors. |
| git status --porcelain | awk '$1 == "??" {print $2}' | xargs rm -r |
| SELECT node.nid AS nid, node.title AS node_title, node_data_field_date.field_event_location_value AS node_data_field_date_field_event_location_value, node.type AS node_type, node.vid AS node_vid, node.created AS node_created, node_revisions.body AS node_revisions_body, node_revisions.format AS node_revisions_format, node_data_field_weight.field_weight_value AS node_data_field_weight_field_weight_value FROM drup_node node LEFT JOIN drup_content_type_event node_data_field_date ON node.vid = node_data_field_date.vid LEFT JOIN drup_node_revisions node_revisions ON node.vid = node_revisions.vid LEFT JOIN drup_content_field_weight node_data_field_weight ON node.vid = node_data_field_weight.vid WHERE ((node.type in ('event')) AND (node.status <> 0)) AND (DATE_FORMAT(CONVERT_TZ(STR_TO_DATE(node_data_field_date.field_date_value2, '%Y-%m-%dT%T'), 'UTC', 'America/New_York'), '%Y-%m') >= '2011-08') ORDER BY node_data_field_weight_field_weight_value ASC |