{"id":21008146,"url":"https://github.com/caged/aixmlserialize","last_synced_at":"2026-04-09T05:31:37.692Z","repository":{"id":510137,"uuid":"137798","full_name":"caged/aixmlserialize","owner":"caged","description":"Aims to convert to and from NSXMLDocuments and NSDictionarys on the iPhone (using KissXML) and OS X.","archived":false,"fork":false,"pushed_at":"2009-03-08T22:29:49.000Z","size":202,"stargazers_count":11,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-15T02:36:32.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://alternateidea.com","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/caged.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2009-02-26T00:46:19.000Z","updated_at":"2019-08-13T14:04:05.000Z","dependencies_parsed_at":"2022-07-30T15:48:58.309Z","dependency_job_id":null,"html_url":"https://github.com/caged/aixmlserialize","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/caged/aixmlserialize","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caged%2Faixmlserialize","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caged%2Faixmlserialize/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caged%2Faixmlserialize/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caged%2Faixmlserialize/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/caged","download_url":"https://codeload.github.com/caged/aixmlserialize/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/caged%2Faixmlserialize/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31587765,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"online","status_checked_at":"2026-04-09T02:00:06.848Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T09:11:39.652Z","updated_at":"2026-04-09T05:31:37.678Z","avatar_url":"https://github.com/caged.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"/*\n * Copyright (c) 2009 Justin Palmer \u003cencytemedia@gmail.com\u003e, All Rights Reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n * \n *   Redistributions of source code must retain the above copyright notice, this\n *   list of conditions and the following disclaimer.\n * \n *   Redistributions in binary form must reproduce the above copyright notice,\n *   this list of conditions and the following disclaimer in the documentation\n *   and/or other materials provided with the distribution.\n * \n *   Neither the name of the author nor the names of its contributors may be used\n *   to endorse or promote products derived from this software without specific\n *   prior written permission.\n * \n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE\n * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \n*/\n\n\n## Quick Overview\nIt's quiet simple.  NSXMLDocument and NSXMLElement each have a new method: toDictionary.\n  [myXMLDoc toDictionary]; //Returns a dictionary representation of the xml document.\n  // See AIXMLElementSerialize.h for more info\n\n## Using the Framework on OS X\nAdd an existing framework and select the AIXMLSerialization.framework. Then include the \nheader:\n    #import \u003cAIXMLSerialization/AIXMLSerialization.h\u003e\n\n\n## Using on the iPhone\nCopy over the files in the 'src' and 'vendor/kissxml' directories to your project.\nIn the build settings set \"Other linker flags\" to -lxml2\nIn the build settings set \"Header search paths\" to /usr/include/libxml2\n\n    #import \"AIXMLSerialization.h\"\n\nThe KissXML library is mapped to it's NSXML counterparts (e.g. NSXMLDocument points to DDXMLDocument) \nand it's recommended that you use the NSXML prefix.\n\n\n\n## GOALS\n* Work on the iPhone and OS X.  On the iPhone we can replace NSXML* with DDXML* from\n  KissXML (http://code.google.com/p/kissxml/) which aims to be a direct replacement for \n  NSXML on the iPhone.  \n\n## TODO\n* Type checking and conversion\n* NSDictionary to XML\n\n## Running the benchmark\nWARNING: committees.xml is 257kb and is parsed over 2500 times so it will take a \nwhile.\nSimply build the foundation tool (command+B) and run:\n    ./benchmark -f FILE_TO_PARSE -p yes\n    // -f (REQUIRED) - File to parse\n    // -p (OPTIONAL) - Print output\n\n## Running Unit Tests\n1. Build unittests bundle (command+b)\n2. Set otest as active executable\n3. command+alt+y (Run-\u003eDebug)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaged%2Faixmlserialize","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcaged%2Faixmlserialize","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaged%2Faixmlserialize/lists"}