freelancer 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (205) hide show
  1. data/.gitignore +3 -0
  2. data/Gemfile +14 -0
  3. data/LICENSE +20 -0
  4. data/README.rdoc +56 -0
  5. data/Rakefile +34 -0
  6. data/VERSION +1 -0
  7. data/freelancer.gemspec +299 -0
  8. data/init.rb +2 -0
  9. data/lib/freelancer.rb +59 -0
  10. data/lib/freelancer/api.rb +20 -0
  11. data/lib/freelancer/api/common.rb +58 -0
  12. data/lib/freelancer/api/employer.rb +56 -0
  13. data/lib/freelancer/api/freelancer.rb +36 -0
  14. data/lib/freelancer/api/job.rb +46 -0
  15. data/lib/freelancer/api/message.rb +89 -0
  16. data/lib/freelancer/api/notification.rb +25 -0
  17. data/lib/freelancer/api/payment.rb +123 -0
  18. data/lib/freelancer/api/profile.rb +30 -0
  19. data/lib/freelancer/api/project.rb +133 -0
  20. data/lib/freelancer/api/user.rb +86 -0
  21. data/lib/freelancer/client.rb +152 -0
  22. data/lib/freelancer/extensions/hash.rb +11 -0
  23. data/lib/freelancer/models/address.rb +46 -0
  24. data/lib/freelancer/models/balance.rb +22 -0
  25. data/lib/freelancer/models/bid.rb +41 -0
  26. data/lib/freelancer/models/config_version.rb +21 -0
  27. data/lib/freelancer/models/eligibility.rb +23 -0
  28. data/lib/freelancer/models/job.rb +33 -0
  29. data/lib/freelancer/models/job_category.rb +18 -0
  30. data/lib/freelancer/models/message.rb +32 -0
  31. data/lib/freelancer/models/milestone.rb +57 -0
  32. data/lib/freelancer/models/news.rb +15 -0
  33. data/lib/freelancer/models/notification.rb +15 -0
  34. data/lib/freelancer/models/notification_status.rb +45 -0
  35. data/lib/freelancer/models/project.rb +116 -0
  36. data/lib/freelancer/models/project_budget.rb +21 -0
  37. data/lib/freelancer/models/project_fee.rb +18 -0
  38. data/lib/freelancer/models/project_options.rb +34 -0
  39. data/lib/freelancer/models/rating.rb +21 -0
  40. data/lib/freelancer/models/review.rb +87 -0
  41. data/lib/freelancer/models/transaction.rb +39 -0
  42. data/lib/freelancer/models/user.rb +225 -0
  43. data/lib/freelancer/models/withdrawal.rb +51 -0
  44. data/lib/freelancer/models/withdrawal_fee.rb +39 -0
  45. data/lib/freelancer/support/json_mapper.rb +95 -0
  46. data/test/fixtures/common/get_config_version.json +1 -0
  47. data/test/fixtures/common/get_config_version.xml +5 -0
  48. data/test/fixtures/common/get_pending_feedback.json +1 -0
  49. data/test/fixtures/common/get_pending_feedback.xml +20 -0
  50. data/test/fixtures/common/get_terms.json +1 -0
  51. data/test/fixtures/common/get_terms.xml +4 -0
  52. data/test/fixtures/common/post_feedback.json +1 -0
  53. data/test/fixtures/common/post_feedback.xml +4 -0
  54. data/test/fixtures/common/post_reply_for_feedback.json +1 -0
  55. data/test/fixtures/common/post_reply_for_feedback.xml +4 -0
  56. data/test/fixtures/common/request_cancel_project.json +1 -0
  57. data/test/fixtures/common/request_cancel_project.xml +4 -0
  58. data/test/fixtures/common/request_withdraw_feedback.json +1 -0
  59. data/test/fixtures/common/request_withdraw_feedback.xml +4 -0
  60. data/test/fixtures/employer/choose_winner_for_project.json +1 -0
  61. data/test/fixtures/employer/choose_winner_for_project.xml +3 -0
  62. data/test/fixtures/employer/delete_draft_project.json +1 -0
  63. data/test/fixtures/employer/delete_draft_project.xml +4 -0
  64. data/test/fixtures/employer/eligible_for_trial_project.json +1 -0
  65. data/test/fixtures/employer/eligible_for_trial_project.xml +5 -0
  66. data/test/fixtures/employer/get_posted_project_list.json +1 -0
  67. data/test/fixtures/employer/get_posted_project_list.xml +38 -0
  68. data/test/fixtures/employer/invite_user_for_project.json +1 -0
  69. data/test/fixtures/employer/invite_user_for_project.xml +4 -0
  70. data/test/fixtures/employer/post_new_draft_project.json +1 -0
  71. data/test/fixtures/employer/post_new_draft_project.xml +5 -0
  72. data/test/fixtures/employer/post_new_project.json +1 -0
  73. data/test/fixtures/employer/post_new_project.xml +5 -0
  74. data/test/fixtures/employer/post_new_trial_project.json +1 -0
  75. data/test/fixtures/employer/post_new_trial_project.xml +5 -0
  76. data/test/fixtures/employer/publish_draft_project.json +1 -0
  77. data/test/fixtures/employer/publish_draft_project.xml +4 -0
  78. data/test/fixtures/employer/update_project_details.json +1 -0
  79. data/test/fixtures/employer/update_project_details.xml +4 -0
  80. data/test/fixtures/employer/upgrade_trial_project.json +1 -0
  81. data/test/fixtures/employer/upgrade_trial_project.xml +4 -0
  82. data/test/fixtures/freelancer/accept_bid_won.json +1 -0
  83. data/test/fixtures/freelancer/accept_bid_won.xml +4 -0
  84. data/test/fixtures/freelancer/get_project_list_for_placed_bids.json +1 -0
  85. data/test/fixtures/freelancer/get_project_list_for_placed_bids.xml +16 -0
  86. data/test/fixtures/freelancer/place_bid_on_project.json +1 -0
  87. data/test/fixtures/freelancer/place_bid_on_project.xml +4 -0
  88. data/test/fixtures/freelancer/retract_bid_from_project.json +1 -0
  89. data/test/fixtures/freelancer/retract_bid_from_project.xml +4 -0
  90. data/test/fixtures/job/get_category_job_list.json +1 -0
  91. data/test/fixtures/job/get_category_job_list.xml +34 -0
  92. data/test/fixtures/job/get_job_list.json +1 -0
  93. data/test/fixtures/job/get_job_list.xml +17 -0
  94. data/test/fixtures/job/get_my_job_list.json +1 -0
  95. data/test/fixtures/job/get_my_job_list.xml +11 -0
  96. data/test/fixtures/message/get_inbox_messages.json +1 -0
  97. data/test/fixtures/message/get_inbox_messages.xml +22 -0
  98. data/test/fixtures/message/get_sent_messages.json +1 -0
  99. data/test/fixtures/message/get_sent_messages.xml +22 -0
  100. data/test/fixtures/message/get_unread_count.json +1 -0
  101. data/test/fixtures/message/get_unread_count.xml +4 -0
  102. data/test/fixtures/message/load_message_thread.json +1 -0
  103. data/test/fixtures/message/load_message_thread.xml +54 -0
  104. data/test/fixtures/message/mark_message_as_read.json +1 -0
  105. data/test/fixtures/message/mark_message_as_read.xml +4 -0
  106. data/test/fixtures/message/send_message.json +1 -0
  107. data/test/fixtures/message/send_message.xml +4 -0
  108. data/test/fixtures/notification/get_news.json +1 -0
  109. data/test/fixtures/notification/get_news.xml +14 -0
  110. data/test/fixtures/notification/get_notification.json +1 -0
  111. data/test/fixtures/notification/get_notification.xml +10 -0
  112. data/test/fixtures/payment/cancel_milestone.json +1 -0
  113. data/test/fixtures/payment/cancel_milestone.xml +4 -0
  114. data/test/fixtures/payment/create_milestone_payment.json +1 -0
  115. data/test/fixtures/payment/create_milestone_payment.xml +4 -0
  116. data/test/fixtures/payment/get_account_balance_status.json +1 -0
  117. data/test/fixtures/payment/get_account_balance_status.xml +12 -0
  118. data/test/fixtures/payment/get_account_milestone_list.json +1 -0
  119. data/test/fixtures/payment/get_account_milestone_list.xml +30 -0
  120. data/test/fixtures/payment/get_account_transaction_list.json +1 -0
  121. data/test/fixtures/payment/get_account_transaction_list.xml +57 -0
  122. data/test/fixtures/payment/get_account_withdrawal_list.json +1 -0
  123. data/test/fixtures/payment/get_account_withdrawal_list.xml +42 -0
  124. data/test/fixtures/payment/get_balance.json +1 -0
  125. data/test/fixtures/payment/get_balance.xml +4 -0
  126. data/test/fixtures/payment/get_project_list_for_transfer.json +1 -0
  127. data/test/fixtures/payment/get_project_list_for_transfer.xml +52 -0
  128. data/test/fixtures/payment/get_withdrawal_fees.json +1 -0
  129. data/test/fixtures/payment/get_withdrawal_fees.xml +41 -0
  130. data/test/fixtures/payment/prepare_transfer.json +1 -0
  131. data/test/fixtures/payment/prepare_transfer.xml +4 -0
  132. data/test/fixtures/payment/release_milestone.json +1 -0
  133. data/test/fixtures/payment/release_milestone.xml +4 -0
  134. data/test/fixtures/payment/request_cancel_withdrawal.json +1 -0
  135. data/test/fixtures/payment/request_cancel_withdrawal.xml +4 -0
  136. data/test/fixtures/payment/request_release_milestone.json +1 -0
  137. data/test/fixtures/payment/request_release_milestone.xml +4 -0
  138. data/test/fixtures/payment/request_withdrawal.json +1 -0
  139. data/test/fixtures/payment/request_withdrawal.xml +6 -0
  140. data/test/fixtures/payment/transfer_money.json +1 -0
  141. data/test/fixtures/payment/transfer_money.xml +4 -0
  142. data/test/fixtures/profile/get_account_details.json +1 -0
  143. data/test/fixtures/profile/get_account_details.xml +71 -0
  144. data/test/fixtures/profile/get_profile_info.json +1 -0
  145. data/test/fixtures/profile/get_profile_info.xml +53 -0
  146. data/test/fixtures/profile/set_profile_info.json +1 -0
  147. data/test/fixtures/profile/set_profile_info.xml +4 -0
  148. data/test/fixtures/project/get_bids_details.json +1 -0
  149. data/test/fixtures/project/get_bids_details.xml +19 -0
  150. data/test/fixtures/project/get_project_budget_config.json +1 -0
  151. data/test/fixtures/project/get_project_budget_config.xml +42 -0
  152. data/test/fixtures/project/get_project_details.json +1 -0
  153. data/test/fixtures/project/get_project_details.xml +78 -0
  154. data/test/fixtures/project/get_project_fees.json +1 -0
  155. data/test/fixtures/project/get_project_fees.xml +31 -0
  156. data/test/fixtures/project/get_public_messages.json +1 -0
  157. data/test/fixtures/project/get_public_messages.xml +27 -0
  158. data/test/fixtures/project/get_sent_messages.xml +22 -0
  159. data/test/fixtures/project/get_unread_count.xml +4 -0
  160. data/test/fixtures/project/load_message_thread.xml +54 -0
  161. data/test/fixtures/project/mark_message_as_read.xml +4 -0
  162. data/test/fixtures/project/post_public_message.json +1 -0
  163. data/test/fixtures/project/post_public_message.xml +4 -0
  164. data/test/fixtures/project/search_projects.json +1 -0
  165. data/test/fixtures/project/search_projects.xml +37 -0
  166. data/test/fixtures/project/send_message.xml +4 -0
  167. data/test/fixtures/user/get_user_details.json +1 -0
  168. data/test/fixtures/user/get_user_details.xml +32 -0
  169. data/test/fixtures/user/get_user_feedback.json +1 -0
  170. data/test/fixtures/user/get_user_feedback.xml +58 -0
  171. data/test/fixtures/user/get_users_by_search.json +1 -0
  172. data/test/fixtures/user/get_users_by_search.xml +26 -0
  173. data/test/freelancer/api/common_api_test.rb +82 -0
  174. data/test/freelancer/api/employer_api_test.rb +105 -0
  175. data/test/freelancer/api/freelancer_api_test.rb +72 -0
  176. data/test/freelancer/api/job_api_test.rb +76 -0
  177. data/test/freelancer/api/message_api_test.rb +144 -0
  178. data/test/freelancer/api/notification_api_test.rb +56 -0
  179. data/test/freelancer/api/payment_api_test.rb +225 -0
  180. data/test/freelancer/api/profile_api_test.rb +54 -0
  181. data/test/freelancer/api/project_api_test.rb +229 -0
  182. data/test/freelancer/api/user_api_test.rb +153 -0
  183. data/test/freelancer/client_test.rb +5 -0
  184. data/test/freelancer/models/balance_test.rb +24 -0
  185. data/test/freelancer/models/bid_test.rb +25 -0
  186. data/test/freelancer/models/config_version.rb +14 -0
  187. data/test/freelancer/models/eligibility_test.rb +14 -0
  188. data/test/freelancer/models/job_category_test.rb +16 -0
  189. data/test/freelancer/models/job_test.rb +19 -0
  190. data/test/freelancer/models/message_test.rb +42 -0
  191. data/test/freelancer/models/milestone_test.rb +21 -0
  192. data/test/freelancer/models/news_test.rb +15 -0
  193. data/test/freelancer/models/notification_test.rb +15 -0
  194. data/test/freelancer/models/project_budget_test.rb +18 -0
  195. data/test/freelancer/models/project_fee_test.rb +17 -0
  196. data/test/freelancer/models/project_test.rb +97 -0
  197. data/test/freelancer/models/review_test.rb +36 -0
  198. data/test/freelancer/models/transaction_test.rb +29 -0
  199. data/test/freelancer/models/user_test.rb +94 -0
  200. data/test/freelancer/models/withdrawal_fee_test.rb +19 -0
  201. data/test/freelancer/models/withdrawal_test.rb +20 -0
  202. data/test/freelancer/oauth_test.rb +112 -0
  203. data/test/freelancer_test.rb +1 -0
  204. data/test/test_helper.rb +42 -0
  205. metadata +427 -0
@@ -0,0 +1 @@
1
+ {"json-result":{"count":10,"items":{"category":[{"id":1,"name":"Websites, IT & Software","job":[{"id":"15","name":".NET","project_count":"16","seo_url":"NET"},{"id":"223","name":"Active Directory","project_count":"2","seo_url":"Active-Directory"},{"id":"51","name":"AJAX","project_count":"4","seo_url":"AJAX"},{"id":"319","name":"Amazon Web Services","project_count":"1","seo_url":"Amazon-Web-Services"},{"id":"215","name":"Apache","project_count":"0","seo_url":"Apache"},{"id":"313","name":"Apache Solr","project_count":"0","seo_url":"Apache-Solr"},{"id":"214","name":"AS400 & iSeries","project_count":"0","seo_url":"AS-iSeries"},{"id":"5","name":"ASP","project_count":"0","seo_url":"ASP"},{"id":"125","name":"Asterisk PBX","project_count":"0","seo_url":"Asterisk-PBX"},{"id":"279","name":"Azure","project_count":"1","seo_url":"Azure"},{"id":"244","name":"Balsamiq","project_count":"0","seo_url":"Balsamiq"},{"id":"273","name":"BMC Remedy","project_count":"0","seo_url":"BMC-Remedy"},{"id":"135","name":"Boonex Dolphin","project_count":"0","seo_url":"Boonex-Dolphin"},{"id":"6","name":"C Programming","project_count":"3","seo_url":"C-Programming"},{"id":"106","name":"C# Programming","project_count":"0","seo_url":"C-Sharp-Programming"},{"id":"320","name":"C++ Programming","project_count":"1","seo_url":"CPlusPlus-Programming"},{"id":"235","name":"CakePHP","project_count":"19","seo_url":"CakePHP"},{"id":"275","name":"Chordiant","project_count":"0","seo_url":"Chordiant"},{"id":"256","name":"Chrome OS","project_count":"0","seo_url":"Chrome-OS"},{"id":"128","name":"Cisco","project_count":"0","seo_url":"Cisco"},{"id":"89","name":"Cloud Computing","project_count":"0","seo_url":"Cloud-Computing"},{"id":"120","name":"CMS","project_count":"1","seo_url":"CMS"},{"id":"276","name":"COBOL","project_count":"0","seo_url":"COBOL"},{"id":"141","name":"Cocoa","project_count":"0","seo_url":"Cocoa"},{"id":"237","name":"Codeigniter","project_count":"0","seo_url":"Codeigniter"},{"id":"11","name":"Cold Fusion","project_count":"1","seo_url":"Cold-Fusion"},{"id":"73","name":"Computer Security","project_count":"0","seo_url":"Computer-Security"},{"id":"286","name":"CUDA","project_count":"0","seo_url":"CUDA"},{"id":"34","name":"Delphi","project_count":"0","seo_url":"Delphi"},{"id":"113","name":"Django","project_count":"0","seo_url":"Django"},{"id":"224","name":"DNS","project_count":"0","seo_url":"DNS"},{"id":"130","name":"DotNetNuke","project_count":"1","seo_url":"DotNetNuke"},{"id":"98","name":"Drupal","project_count":"0","seo_url":"Drupal"},{"id":"137","name":"eCommerce","project_count":"0","seo_url":"eCommerce"},{"id":"159","name":"Electronic Forms","project_count":"0","seo_url":"Electronic-Forms"},{"id":"191","name":"Embedded Software","project_count":"0","seo_url":"Embedded-Software"},{"id":"110","name":"Erlang","project_count":"1","seo_url":"Erlang"},{"id":"155","name":"Expression Engine","project_count":"0","seo_url":"Expression-Engine"},{"id":"74","name":"Facebook","project_count":"0","seo_url":"Facebook"},{"id":"308","name":"Fortran","project_count":"0","seo_url":"Fortran"},{"id":"150","name":"Forum Software","project_count":"0","seo_url":"Forum-Software"},{"id":"60","name":"Game Design","project_count":"0","seo_url":"Game-Design"},{"id":"298","name":"Google Analytics","project_count":"0","seo_url":"Google-Analytics"},{"id":"131","name":"Google App Engine","project_count":"0","seo_url":"Google-App-Engine"},{"id":"309","name":"Google Buzz","project_count":"0","seo_url":"Google-Buzz"},{"id":"248","name":"Google Go","project_count":"0","seo_url":"Google-Go"},{"id":"153","name":"Google Wave","project_count":"1","seo_url":"Google-Wave"},{"id":"266","name":"GPGPU","project_count":"0","seo_url":"GPGPU"},{"id":"274","name":"HP Openview","project_count":"0","seo_url":"HP-Openview"},{"id":"335","name":"HTML","project_count":"2","seo_url":"HTML.1"},{"id":"323","name":"HTML5","project_count":"2","seo_url":"HTML"},{"id":"225","name":"IIS","project_count":"0","seo_url":"IIS"},{"id":"45","name":"J2EE","project_count":"0","seo_url":"J-EE"},{"id":"7","name":"Java","project_count":"2","seo_url":"Java"},{"id":"112","name":"JavaFX","project_count":"0","seo_url":"JavaFX"},{"id":"9","name":"Javascript","project_count":"2","seo_url":"Javascript"},{"id":"54","name":"Joomla","project_count":"0","seo_url":"Joomla"},{"id":"8","name":"JSP","project_count":"0","seo_url":"JSP"},{"id":"40","name":"Link Building","project_count":"0","seo_url":"Link-Building"},{"id":"31","name":"Linux","project_count":"0","seo_url":"Linux"},{"id":"142","name":"Mac OS","project_count":"1","seo_url":"MacOS"},{"id":"90","name":"Magento","project_count":"2","seo_url":"Magento"},{"id":"148","name":"Metatrader","project_count":"0","seo_url":"Metatrader"},{"id":"291","name":"Microsoft","project_count":"0","seo_url":"Microsoft"},{"id":"124","name":"Microsoft Access","project_count":"0","seo_url":"Microsoft-Access"},{"id":"222","name":"Microsoft Exchange","project_count":"0","seo_url":"Microsoft-Exchange"},{"id":"249","name":"Microsoft Expression","project_count":"0","seo_url":"Microsoft-Expression"},{"id":"91","name":"MMORPG","project_count":"0","seo_url":"MMORPG"},{"id":"230","name":"MODx","project_count":"0","seo_url":"MODx"},{"id":"96","name":"MySpace","project_count":"0","seo_url":"MySpace"},{"id":"305","name":"MySQL","project_count":"4","seo_url":"MySQL"},{"id":"301","name":"Nginx","project_count":"0","seo_url":"Nginx"},{"id":"287","name":"NoSQL Couch & Mongo","project_count":"0","seo_url":"NoSQL-Couch-Mongo"},{"id":"143","name":"Objective C","project_count":"0","seo_url":"Objective-C"},{"id":"118","name":"Oracle","project_count":"0","seo_url":"Oracle"},{"id":"231","name":"OSCommerce","project_count":"0","seo_url":"OSCommerce"},{"id":"138","name":"Paypal API","project_count":"1","seo_url":"Paypal-API"},{"id":"314","name":"Pentaho","project_count":"0","seo_url":"Pentaho"},{"id":"4","name":"Perl","project_count":"1","seo_url":"Perl"},{"id":"108","name":"Photoshop Coding","project_count":"0","seo_url":"Photoshop-Coding"},{"id":"3","name":"PHP","project_count":"34","seo_url":"PHP"},{"id":"304","name":"Prestashop","project_count":"0","seo_url":"Prestashop"},{"id":"294","name":"Prolog","project_count":"0","seo_url":"Prolog"},{"id":"243","name":"Protoshare","project_count":"0","seo_url":"Protoshare"},{"id":"13","name":"Python","project_count":"3","seo_url":"Python"},{"id":"221","name":"REALbasic","project_count":"0","seo_url":"REALbasic"},{"id":"50","name":"Ruby & Ruby on Rails","project_count":"0","seo_url":"Ruby-on-Rails"},{"id":"267","name":"SAP","project_count":"0","seo_url":"SAP"},{"id":"16","name":"Script Install","project_count":"0","seo_url":"Script-Install"},{"id":"38","name":"SEO","project_count":"0","seo_url":"SEO"},{"id":"146","name":"Sharepoint","project_count":"0","seo_url":"Sharepoint"},{"id":"270","name":"Shell Script","project_count":"0","seo_url":"Shell-Script"},{"id":"56","name":"Shopping Carts","project_count":"0","seo_url":"Shopping-Carts"},{"id":"161","name":"Silverlight","project_count":"0","seo_url":"Silverlight"},{"id":"136","name":"Social Engine","project_count":"0","seo_url":"Social-Engine"},{"id":"65","name":"Social Networking","project_count":"0","seo_url":"Social-Networking"},{"id":"116","name":"Software Architecture","project_count":"1","seo_url":"Software-Architecture"},{"id":"167","name":"Software Testing","project_count":"1","seo_url":"Software-Testing"},{"id":"333","name":"Solaris","project_count":"0","seo_url":"Solaris"},{"id":"68","name":"SQL","project_count":"0","seo_url":"SQL"},{"id":"30","name":"System Admin","project_count":"0","seo_url":"System-Admin"},{"id":"72","name":"Twitter","project_count":"0","seo_url":"Twitter"},{"id":"101","name":"UML Design","project_count":"0","seo_url":"UML-Design"},{"id":"336","name":"UNIX","project_count":"0","seo_url":"UNIX"},{"id":"317","name":"Usability Testing","project_count":"0","seo_url":"Usability-Testing"},{"id":"115","name":"User Interface \/ IA","project_count":"0","seo_url":"User-Interface-IA"},{"id":"233","name":"vBulletin","project_count":"0","seo_url":"vBulletin"},{"id":"253","name":"Virtual Worlds","project_count":"0","seo_url":"Virtual-Worlds"},{"id":"14","name":"Visual Basic","project_count":"0","seo_url":"Visual-Basic"},{"id":"258","name":"VoIP","project_count":"0","seo_url":"VoIP"},{"id":"122","name":"Volusion","project_count":"0","seo_url":"Volusion"},{"id":"299","name":"vTiger","project_count":"0","seo_url":"vTiger"},{"id":"95","name":"Web Scraping","project_count":"0","seo_url":"Web-Scraping"},{"id":"33","name":"Web Security","project_count":"0","seo_url":"Web-Security"},{"id":"219","name":"Website Testing","project_count":"0","seo_url":"Website-Testing"},{"id":"29","name":"Windows","project_count":"0","seo_url":"Windows"},{"id":"69","name":"Wordpress","project_count":"0","seo_url":"Wordpress"},{"id":"10","name":"XML","project_count":"1","seo_url":"XML"},{"id":"152","name":"YouTube","project_count":"0","seo_url":"YouTube"},{"id":"205","name":"Zen Cart","project_count":"0","seo_url":"Zen-Cart"},{"id":"236","name":"Zend","project_count":"0","seo_url":"Zend"}]},{"id":2,"name":"Mobile Phones & Computing","job":[{"id":"306","name":"Amazon Kindle","project_count":"0","seo_url":"Amazon-Kindle"},{"id":"59","name":"Android","project_count":"1","seo_url":"Android"},{"id":"133","name":"Blackberry","project_count":"8","seo_url":"Blackberry"},{"id":"321","name":"Geolocation","project_count":"0","seo_url":"Geolocation"},{"id":"307","name":"iPad","project_count":"5","seo_url":"iPad"},{"id":"58","name":"iPhone","project_count":"7","seo_url":"iPhone"},{"id":"295","name":"J2ME","project_count":"0","seo_url":"J-ME"},{"id":"44","name":"Mobile Phone","project_count":"0","seo_url":"Mobile-Phone"},{"id":"280","name":"Nokia","project_count":"0","seo_url":"Nokia"},{"id":"134","name":"Palm","project_count":"14","seo_url":"Palm"},{"id":"315","name":"Samsung","project_count":"0","seo_url":"Samsung"},{"id":"117","name":"Symbian","project_count":"0","seo_url":"Symbian"},{"id":"296","name":"Windows CE","project_count":"0","seo_url":"Windows CE"},{"id":"140","name":"Windows Mobile","project_count":"0","seo_url":"Windows-Mobile"}]},{"id":3,"name":"Writing & Content","job":[{"id":"194","name":"Academic Writing","project_count":"2","seo_url":"Academic-Writing"},{"id":"250","name":"Article Rewriting","project_count":"0","seo_url":"Article-Rewriting"},{"id":"174","name":"Articles","project_count":"0","seo_url":"Articles"},{"id":"165","name":"Astroturfing","project_count":"0","seo_url":"Astroturfing"},{"id":"75","name":"Blog","project_count":"0","seo_url":"Blog"},{"id":"206","name":"Cartography & Maps","project_count":"0","seo_url":"Cartography-Maps"},{"id":"21","name":"Copywriting","project_count":"0","seo_url":"Copywriting"},{"id":"160","name":"eBooks","project_count":"1","seo_url":"eBooks"},{"id":"104","name":"Editing","project_count":"0","seo_url":"Editing"},{"id":"175","name":"Fiction","project_count":"0","seo_url":"Fiction"},{"id":"86","name":"Financial Research","project_count":"0","seo_url":"Financial-Research"},{"id":"164","name":"Forum Posting","project_count":"1","seo_url":"Forum-Posting"},{"id":"156","name":"Ghostwriting","project_count":"0","seo_url":"Ghostwriting"},{"id":"246","name":"Grant Writing","project_count":"0","seo_url":"Grant-Writing"},{"id":"254","name":"LaTeX","project_count":"0","seo_url":"LaTeX"},{"id":"195","name":"Medical Writing","project_count":"0","seo_url":"Medical-Writing"},{"id":"158","name":"PDF","project_count":"0","seo_url":"PDF"},{"id":"80","name":"Powerpoint","project_count":"0","seo_url":"Powerpoint"},{"id":"203","name":"Product Descriptions","project_count":"0","seo_url":"Product-Descriptions"},{"id":"48","name":"Proofreading","project_count":"0","seo_url":"Proofreading"},{"id":"114","name":"Publishing","project_count":"0","seo_url":"Publishing"},{"id":"123","name":"Report Writing","project_count":"0","seo_url":"Report-Writing"},{"id":"47","name":"Research","project_count":"0","seo_url":"Research"},{"id":"202","name":"Reviews","project_count":"0","seo_url":"Reviews"},{"id":"103","name":"Technical Writing","project_count":"0","seo_url":"Technical-Writing"},{"id":"22","name":"Translation","project_count":"1","seo_url":"Translation"},{"id":"238","name":"Travel Writing","project_count":"0","seo_url":"Travel-Writing"}]},{"id":4,"name":"Design, Media & Architecture","job":[{"id":"93","name":"3D Rendering","project_count":"3","seo_url":"Rendering"},{"id":"340","name":"ActionScript","project_count":"1","seo_url":"ActionScript"},{"id":"171","name":"After Effects","project_count":"0","seo_url":"After-Effects"},{"id":"107","name":"Animation","project_count":"0","seo_url":"Animation"},{"id":"126","name":"Arts & Crafts","project_count":"0","seo_url":"Arts-amp-Crafts"},{"id":"28","name":"Audio Services","project_count":"0","seo_url":"Audio-Services"},{"id":"26","name":"Banner Design","project_count":"0","seo_url":"Banner-Design"},{"id":"310","name":"Brochure Design","project_count":"0","seo_url":"Brochure-Design"},{"id":"84","name":"Building Architecture","project_count":"0","seo_url":"Building-amp-Architecture"},{"id":"278","name":"Business Cards","project_count":"0","seo_url":"Business-Cards"},{"id":"312","name":"Capture NX2","project_count":"0","seo_url":"Capture-NX"},{"id":"234","name":"Caricature & Cartoons","project_count":"0","seo_url":"Caricature-Cartoons"},{"id":"229","name":"Concept Design","project_count":"0","seo_url":"Concept-Design"},{"id":"232","name":"Corporate Identity","project_count":"0","seo_url":"Corporate-Identity"},{"id":"262","name":"Covers & Packaging","project_count":"0","seo_url":"Covers-Packaging"},{"id":"77","name":"CSS","project_count":"2","seo_url":"CSS"},{"id":"169","name":"Dreamweaver","project_count":"0","seo_url":"Dreamweaver"},{"id":"127","name":"Fashion Design","project_count":"0","seo_url":"Fashion-Design"},{"id":"12","name":"Flash","project_count":"2","seo_url":"Flash"},{"id":"78","name":"Flex","project_count":"0","seo_url":"Flex"},{"id":"264","name":"Format & Layout","project_count":"0","seo_url":"Format-Layout"},{"id":"20","name":"Graphic Design","project_count":"1","seo_url":"Graphic-Design"},{"id":"170","name":"Illustration","project_count":"0","seo_url":"Illustration"},{"id":"70","name":"Illustrator","project_count":"0","seo_url":"Illustrator"},{"id":"168","name":"InDesign","project_count":"0","seo_url":"Indesign"},{"id":"61","name":"Industrial Design","project_count":"0","seo_url":"Industrial-Design"},{"id":"277","name":"Interior Design","project_count":"0","seo_url":"Interior-Design"},{"id":"32","name":"Logo Design","project_count":"0","seo_url":"Logo-Design"},{"id":"173","name":"Maya","project_count":"0","seo_url":"Maya"},{"id":"172","name":"Music","project_count":"0","seo_url":"Music"},{"id":"311","name":"Papervision3D","project_count":"0","seo_url":"Papervision-D"},{"id":"204","name":"Photo Editing","project_count":"0","seo_url":"Photo-Editing"},{"id":"27","name":"Photography","project_count":"29","seo_url":"Photography"},{"id":"57","name":"Photoshop","project_count":"0","seo_url":"Photoshop"},{"id":"284","name":"Photoshop Design","project_count":"0","seo_url":"Photoshop-Design"},{"id":"157","name":"Print","project_count":"29","seo_url":"Print"},{"id":"247","name":"PSD to HTML","project_count":"0","seo_url":"PSD-to-HTML"},{"id":"268","name":"PSD2CMS","project_count":"0","seo_url":"PSD-CMS"},{"id":"259","name":"QuarkXPress","project_count":"0","seo_url":"QuarkXPress"},{"id":"196","name":"Stationery Design","project_count":"0","seo_url":"Stationery-Design"},{"id":"269","name":"Templates","project_count":"0","seo_url":"Templates"},{"id":"99","name":"Typography","project_count":"0","seo_url":"Typography"},{"id":"283","name":"Video Broadcasting","project_count":"0","seo_url":"Video-Broadcasting"},{"id":"52","name":"Video Services","project_count":"0","seo_url":"Video-Services"},{"id":"209","name":"Voice Talent","project_count":"0","seo_url":"Voice-Talent"},{"id":"17","name":"Website Design","project_count":"0","seo_url":"Website-Design"},{"id":"197","name":"Word","project_count":"0","seo_url":"Word"}]},{"id":5,"name":"Data Entry & Admin","job":[{"id":"257","name":"BPO","project_count":"2","seo_url":"BPO"},{"id":"79","name":"Customer Support","project_count":"1","seo_url":"Customer-Support"},{"id":"39","name":"Data Entry","project_count":"3","seo_url":"Data-Entry"},{"id":"36","name":"Data Processing","project_count":"0","seo_url":"Data-Processing"},{"id":"220","name":"Desktop Support","project_count":"0","seo_url":"Desktop-Support"},{"id":"55","name":"Excel","project_count":"0","seo_url":"Excel"},{"id":"218","name":"Order Processing","project_count":"0","seo_url":"Order-Processing"},{"id":"217","name":"Phone Support","project_count":"1","seo_url":"Phone-Support"},{"id":"216","name":"Technical Support","project_count":"0","seo_url":"Technical-Support"},{"id":"121","name":"Transcription","project_count":"0","seo_url":"Transcription"},{"id":"198","name":"Video Upload","project_count":"0","seo_url":"Video-Upload"},{"id":"129","name":"Virtual Assistant","project_count":"0","seo_url":"Virtual-Assistant"},{"id":"199","name":"Web Search","project_count":"0","seo_url":"Web-Search"}]},{"id":6,"name":"Engineering & Science","job":[{"id":"330","name":"Aeronautical Engineering","project_count":"1","seo_url":"Aeronautical-Engineering"},{"id":"92","name":"Algorithm","project_count":"0","seo_url":"Algorithm"},{"id":"271","name":"AutoCAD","project_count":"0","seo_url":"AutoCAD"},{"id":"240","name":"Biology","project_count":"0","seo_url":"Biology"},{"id":"144","name":"Biotechnology","project_count":"0","seo_url":"Biotechnology"},{"id":"76","name":"CAD\/CAM","project_count":"0","seo_url":"CAD-CAM"},{"id":"187","name":"Chemical Engineering","project_count":"0","seo_url":"Chemical-Engineering"},{"id":"186","name":"Civil Engineering","project_count":"0","seo_url":"Civil-Engineering"},{"id":"338","name":"Climate Sciences","project_count":"0","seo_url":"Climate-Sciences"},{"id":"242","name":"Construction Monitoring","project_count":"0","seo_url":"Construction-Monitoring"},{"id":"263","name":"Cryptography","project_count":"0","seo_url":"Cryptography"},{"id":"334","name":"Data Mining","project_count":"0","seo_url":"Data-Mining"},{"id":"184","name":"Electrical Engineering","project_count":"0","seo_url":"Electrical-Engineering"},{"id":"43","name":"Electronics","project_count":"0","seo_url":"Electronics"},{"id":"42","name":"Engineering","project_count":"0","seo_url":"Engineering"},{"id":"193","name":"Finite Element Analysis","project_count":"0","seo_url":"Finite-Element-Analysis"},{"id":"239","name":"Geology","project_count":"0","seo_url":"Geology"},{"id":"162","name":"Home Design","project_count":"0","seo_url":"Home-Design"},{"id":"292","name":"Machine Learning","project_count":"0","seo_url":"Machine-Learning"},{"id":"303","name":"Manufacturing Design","project_count":"0","seo_url":"Manufacturing-Design"},{"id":"185","name":"Materials Engineering","project_count":"0","seo_url":"Materials-Engineering"},{"id":"329","name":"Mathematics","project_count":"0","seo_url":"Mathematics"},{"id":"63","name":"Matlab & Mathematica","project_count":"1","seo_url":"Matlab-Mathematica"},{"id":"166","name":"Mechanical Engineering","project_count":"0","seo_url":"Mechanical-Engineering"},{"id":"192","name":"Mechatronics","project_count":"0","seo_url":"Mechatronics"},{"id":"176","name":"Medical","project_count":"0","seo_url":"Medical"},{"id":"111","name":"Microcontroller","project_count":"0","seo_url":"Microcontroller"},{"id":"328","name":"Mining Engineering","project_count":"0","seo_url":"Mining-Engineering"},{"id":"293","name":"Natural Language","project_count":"0","seo_url":"Natural-Language"},{"id":"265","name":"PCB Layout","project_count":"0","seo_url":"PCB-Layout"},{"id":"163","name":"PLC & SCADA","project_count":"0","seo_url":"PLC-SCADA"},{"id":"241","name":"Project Scheduling","project_count":"0","seo_url":"Project-Scheduling"},{"id":"201","name":"Quantum","project_count":"0","seo_url":"Quantum"},{"id":"85","name":"Scientific Research","project_count":"0","seo_url":"Scientific-Research"},{"id":"139","name":"Solidworks","project_count":"0","seo_url":"Solidworks"},{"id":"119","name":"Statistics","project_count":"0","seo_url":"Statistics"},{"id":"188","name":"Structural Engineering","project_count":"0","seo_url":"Structural-Engineering"},{"id":"71","name":"Verilog \/ VHDL","project_count":"0","seo_url":"Verilog-VHDL"},{"id":"41","name":"Wireless","project_count":"0","seo_url":"Wireless"}]},{"id":7,"name":"Product Sourcing & Manufacturing","job":[{"id":"213","name":"Buyer Sourcing","project_count":"0","seo_url":"Buyer-Sourcing"},{"id":"212","name":"Logistics & Shipping","project_count":"0","seo_url":"Logistics-Shipping"},{"id":"83","name":"Manufacturing","project_count":"0","seo_url":"Manufacturing"},{"id":"324","name":"Product Design","project_count":"0","seo_url":"Product-Design"},{"id":"62","name":"Product Sourcing","project_count":"0","seo_url":"Product-Sourcing"},{"id":"211","name":"Supplier Sourcing","project_count":"0","seo_url":"Supplier-Sourcing"}]},{"id":8,"name":"Sales & Marketing","job":[{"id":"100","name":"Advertising","project_count":"1","seo_url":"Advertising"},{"id":"97","name":"Branding","project_count":"0","seo_url":"Branding"},{"id":"94","name":"Bulk Marketing","project_count":"0","seo_url":"Bulk-Marketing"},{"id":"105","name":"Craigslist","project_count":"0","seo_url":"Craigslist"},{"id":"147","name":"CRM","project_count":"0","seo_url":"CRM"},{"id":"251","name":"eBay","project_count":"0","seo_url":"eBay"},{"id":"302","name":"Google Adsense","project_count":"0","seo_url":"Google-Adsense"},{"id":"25","name":"Internet Marketing","project_count":"0","seo_url":"Internet-Marketing"},{"id":"177","name":"Leads","project_count":"0","seo_url":"Leads"},{"id":"339","name":"Market Research","project_count":"0","seo_url":"Market-Research"},{"id":"82","name":"Marketing","project_count":"29","seo_url":"Marketing"},{"id":"151","name":"MLM","project_count":"0","seo_url":"MLM"},{"id":"64","name":"Sales","project_count":"0","seo_url":"Sales"},{"id":"66","name":"SEM \/ Adwords","project_count":"0","seo_url":"SEM-Adwords"},{"id":"49","name":"Telemarketing","project_count":"0","seo_url":"Telemarketing"}]},{"id":9,"name":"Business, Accounting, Human Resources & Legal","job":[{"id":"53","name":"Accounting","project_count":"4","seo_url":"Accounting"},{"id":"316","name":"Audit","project_count":"0","seo_url":"Audit"},{"id":"245","name":"Business Analysis","project_count":"0","seo_url":"Business-Analysis"},{"id":"149","name":"Business Plans","project_count":"0","seo_url":"Business-Plans"},{"id":"182","name":"Contracts","project_count":"0","seo_url":"Contracts"},{"id":"326","name":"Employment Law","project_count":"0","seo_url":"Employment-Law"},{"id":"272","name":"ERP","project_count":"0","seo_url":"ERP"},{"id":"290","name":"Event Planning","project_count":"0","seo_url":"EventPlanning"},{"id":"179","name":"Finance","project_count":"0","seo_url":"Finance"},{"id":"145","name":"Human Resources","project_count":"0","seo_url":"Human-Resources"},{"id":"289","name":"Inventory Management","project_count":"0","seo_url":"Inventory-Management"},{"id":"337","name":"ISO9001","project_count":"0","seo_url":"ISO"},{"id":"24","name":"Legal","project_count":"0","seo_url":"Legal"},{"id":"183","name":"Legal Research","project_count":"0","seo_url":"Legal-Research"},{"id":"178","name":"Management","project_count":"0","seo_url":"Management"},{"id":"226","name":"Patents","project_count":"0","seo_url":"Patents"},{"id":"288","name":"Payroll","project_count":"0","seo_url":"Payroll"},{"id":"132","name":"PeopleSoft","project_count":"0","seo_url":"PeopleSoft"},{"id":"37","name":"Project Management","project_count":"0","seo_url":"Project-Management"},{"id":"325","name":"Property Law","project_count":"0","seo_url":"Property-Law"},{"id":"297","name":"Public Relations","project_count":"0","seo_url":"Public-Relations"},{"id":"180","name":"Quickbooks & Quicken","project_count":"0","seo_url":"Quickbooks-Quicken"},{"id":"207","name":"Recruitment","project_count":"0","seo_url":"Recruitment"},{"id":"318","name":"Salesforce.com","project_count":"0","seo_url":"Salesforce-com"},{"id":"181","name":"Tax","project_count":"0","seo_url":"Tax"},{"id":"327","name":"Tax Law","project_count":"0","seo_url":"Tax-Law"}]},{"id":10,"name":"Other","job":[{"id":"331","name":"Anything Goes","project_count":"29","seo_url":"Anything-Goes"},{"id":"190","name":"Automotive","project_count":"0","seo_url":"Automotive"},{"id":"252","name":"Dating","project_count":"0","seo_url":"Dating"},{"id":"109","name":"Education & Tutoring","project_count":"0","seo_url":"Education-Tutoring"},{"id":"227","name":"Financial Markets","project_count":"0","seo_url":"Financial-Markets"},{"id":"200","name":"Genealogy","project_count":"0","seo_url":"Genealogy"},{"id":"300","name":"Health","project_count":"0","seo_url":"Health"},{"id":"154","name":"Insurance","project_count":"0","seo_url":"Insurance"},{"id":"322","name":"Nutrition","project_count":"0","seo_url":"Nutrition"},{"id":"189","name":"Sports","project_count":"0","seo_url":"Sports"},{"id":"208","name":"Test Automation","project_count":"0","seo_url":"Test-Automation"},{"id":"67","name":"Testing \/ QA","project_count":"1","seo_url":"Testing-QA"},{"id":"46","name":"Training","project_count":"0","seo_url":"Training"},{"id":"102","name":"Troubleshooting","project_count":"0","seo_url":"Troubleshooting"},{"id":"332","name":"Valuation & Appraisal","project_count":"0","seo_url":"Valuation-amp-Appraisal"},{"id":"228","name":"Weddings","project_count":"0","seo_url":"Weddings"},{"id":"88","name":"XXX","project_count":"3","seo_url":"XXX"}]}]}}}
@@ -0,0 +1,34 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>10</count>
4
+ <items>
5
+ <category>
6
+ <id>1</id>
7
+ <name>Websites, IT & Software</name>
8
+ <job>
9
+ <id>15</id>
10
+ <name>.NET</name>
11
+ <project_count>288</project_count>
12
+ <seo_url>NET</seo_url>
13
+ </job>
14
+ <job>
15
+ <id>223</id>
16
+ <name>Active Directory</name>
17
+ <project_count>10</project_count>
18
+ <seo_url>Active-Directory</seo_url>
19
+ </job>
20
+ <job>
21
+ <id>51</id>
22
+ <name>AJAX</name>
23
+ <project_count>193</project_count>
24
+ <seo_url>AJAX</seo_url>
25
+ </job>
26
+ <job>
27
+ <id>319</id>
28
+ <name>Amazon Web Services</name>
29
+ <project_count>17</project_count>
30
+ <seo_url>Amazon-Web-Services</seo_url>
31
+ </job>
32
+ </category>
33
+ </items>
34
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":325,"items":[{"id":"15","name":".NET","project_count":"16","seo_url":"NET"},{"id":"93","name":"3D Rendering","project_count":"3","seo_url":"Rendering"},{"id":"194","name":"Academic Writing","project_count":"2","seo_url":"Academic-Writing"},{"id":"53","name":"Accounting","project_count":"4","seo_url":"Accounting"},{"id":"340","name":"ActionScript","project_count":"1","seo_url":"ActionScript"},{"id":"223","name":"Active Directory","project_count":"2","seo_url":"Active-Directory"},{"id":"100","name":"Advertising","project_count":"1","seo_url":"Advertising"},{"id":"330","name":"Aeronautical Engineering","project_count":"1","seo_url":"Aeronautical-Engineering"},{"id":"171","name":"After Effects","project_count":"0","seo_url":"After-Effects"},{"id":"51","name":"AJAX","project_count":"4","seo_url":"AJAX"},{"id":"92","name":"Algorithm","project_count":"0","seo_url":"Algorithm"},{"id":"306","name":"Amazon Kindle","project_count":"0","seo_url":"Amazon-Kindle"},{"id":"319","name":"Amazon Web Services","project_count":"1","seo_url":"Amazon-Web-Services"},{"id":"59","name":"Android","project_count":"1","seo_url":"Android"},{"id":"107","name":"Animation","project_count":"0","seo_url":"Animation"},{"id":"331","name":"Anything Goes","project_count":"29","seo_url":"Anything-Goes"},{"id":"215","name":"Apache","project_count":"0","seo_url":"Apache"},{"id":"313","name":"Apache Solr","project_count":"0","seo_url":"Apache-Solr"},{"id":"250","name":"Article Rewriting","project_count":"0","seo_url":"Article-Rewriting"},{"id":"174","name":"Articles","project_count":"0","seo_url":"Articles"},{"id":"126","name":"Arts &amp; Crafts","project_count":"0","seo_url":"Arts-amp-Crafts"},{"id":"214","name":"AS400 &amp; iSeries","project_count":"0","seo_url":"AS-iSeries"},{"id":"5","name":"ASP","project_count":"0","seo_url":"ASP"},{"id":"125","name":"Asterisk PBX","project_count":"0","seo_url":"Asterisk-PBX"},{"id":"165","name":"Astroturfing","project_count":"0","seo_url":"Astroturfing"},{"id":"28","name":"Audio Services","project_count":"0","seo_url":"Audio-Services"},{"id":"316","name":"Audit","project_count":"0","seo_url":"Audit"},{"id":"271","name":"AutoCAD","project_count":"0","seo_url":"AutoCAD"},{"id":"190","name":"Automotive","project_count":"0","seo_url":"Automotive"},{"id":"279","name":"Azure","project_count":"1","seo_url":"Azure"},{"id":"244","name":"Balsamiq","project_count":"0","seo_url":"Balsamiq"},{"id":"26","name":"Banner Design","project_count":"0","seo_url":"Banner-Design"},{"id":"240","name":"Biology","project_count":"0","seo_url":"Biology"},{"id":"144","name":"Biotechnology","project_count":"0","seo_url":"Biotechnology"},{"id":"133","name":"Blackberry","project_count":"8","seo_url":"Blackberry"},{"id":"75","name":"Blog","project_count":"0","seo_url":"Blog"},{"id":"273","name":"BMC Remedy","project_count":"0","seo_url":"BMC-Remedy"},{"id":"135","name":"Boonex Dolphin","project_count":"0","seo_url":"Boonex-Dolphin"},{"id":"257","name":"BPO","project_count":"2","seo_url":"BPO"},{"id":"97","name":"Branding","project_count":"0","seo_url":"Branding"},{"id":"310","name":"Brochure Design","project_count":"0","seo_url":"Brochure-Design"},{"id":"84","name":"Building Architecture","project_count":"0","seo_url":"Building-amp-Architecture"},{"id":"94","name":"Bulk Marketing","project_count":"0","seo_url":"Bulk-Marketing"},{"id":"245","name":"Business Analysis","project_count":"0","seo_url":"Business-Analysis"},{"id":"278","name":"Business Cards","project_count":"0","seo_url":"Business-Cards"},{"id":"149","name":"Business Plans","project_count":"0","seo_url":"Business-Plans"},{"id":"213","name":"Buyer Sourcing","project_count":"0","seo_url":"Buyer-Sourcing"},{"id":"6","name":"C Programming","project_count":"3","seo_url":"C-Programming"},{"id":"106","name":"C# Programming","project_count":"0","seo_url":"C-Sharp-Programming"},{"id":"320","name":"C++ Programming","project_count":"1","seo_url":"CPlusPlus-Programming"},{"id":"76","name":"CAD\/CAM","project_count":"0","seo_url":"CAD-CAM"},{"id":"235","name":"CakePHP","project_count":"19","seo_url":"CakePHP"},{"id":"312","name":"Capture NX2","project_count":"0","seo_url":"Capture-NX"},{"id":"234","name":"Caricature &amp; Cartoons","project_count":"0","seo_url":"Caricature-Cartoons"},{"id":"206","name":"Cartography &amp; Maps","project_count":"0","seo_url":"Cartography-Maps"},{"id":"187","name":"Chemical Engineering","project_count":"0","seo_url":"Chemical-Engineering"},{"id":"275","name":"Chordiant","project_count":"0","seo_url":"Chordiant"},{"id":"256","name":"Chrome OS","project_count":"0","seo_url":"Chrome-OS"},{"id":"128","name":"Cisco","project_count":"0","seo_url":"Cisco"},{"id":"186","name":"Civil Engineering","project_count":"0","seo_url":"Civil-Engineering"},{"id":"338","name":"Climate Sciences","project_count":"0","seo_url":"Climate-Sciences"},{"id":"89","name":"Cloud Computing","project_count":"0","seo_url":"Cloud-Computing"},{"id":"120","name":"CMS","project_count":"1","seo_url":"CMS"},{"id":"276","name":"COBOL","project_count":"0","seo_url":"COBOL"},{"id":"141","name":"Cocoa","project_count":"0","seo_url":"Cocoa"},{"id":"237","name":"Codeigniter","project_count":"0","seo_url":"Codeigniter"},{"id":"11","name":"Cold Fusion","project_count":"1","seo_url":"Cold-Fusion"},{"id":"73","name":"Computer Security","project_count":"0","seo_url":"Computer-Security"},{"id":"229","name":"Concept Design","project_count":"0","seo_url":"Concept-Design"},{"id":"242","name":"Construction Monitoring","project_count":"0","seo_url":"Construction-Monitoring"},{"id":"182","name":"Contracts","project_count":"0","seo_url":"Contracts"},{"id":"21","name":"Copywriting","project_count":"0","seo_url":"Copywriting"},{"id":"232","name":"Corporate Identity","project_count":"0","seo_url":"Corporate-Identity"},{"id":"262","name":"Covers &amp; Packaging","project_count":"0","seo_url":"Covers-Packaging"},{"id":"105","name":"Craigslist","project_count":"0","seo_url":"Craigslist"},{"id":"147","name":"CRM","project_count":"0","seo_url":"CRM"},{"id":"263","name":"Cryptography","project_count":"0","seo_url":"Cryptography"},{"id":"77","name":"CSS","project_count":"2","seo_url":"CSS"},{"id":"286","name":"CUDA","project_count":"0","seo_url":"CUDA"},{"id":"79","name":"Customer Support","project_count":"1","seo_url":"Customer-Support"},{"id":"39","name":"Data Entry","project_count":"3","seo_url":"Data-Entry"},{"id":"334","name":"Data Mining","project_count":"0","seo_url":"Data-Mining"},{"id":"36","name":"Data Processing","project_count":"0","seo_url":"Data-Processing"},{"id":"252","name":"Dating","project_count":"0","seo_url":"Dating"},{"id":"34","name":"Delphi","project_count":"0","seo_url":"Delphi"},{"id":"220","name":"Desktop Support","project_count":"0","seo_url":"Desktop-Support"},{"id":"113","name":"Django","project_count":"0","seo_url":"Django"},{"id":"224","name":"DNS","project_count":"0","seo_url":"DNS"},{"id":"130","name":"DotNetNuke","project_count":"1","seo_url":"DotNetNuke"},{"id":"169","name":"Dreamweaver","project_count":"0","seo_url":"Dreamweaver"},{"id":"98","name":"Drupal","project_count":"0","seo_url":"Drupal"},{"id":"251","name":"eBay","project_count":"0","seo_url":"eBay"},{"id":"160","name":"eBooks","project_count":"1","seo_url":"eBooks"},{"id":"137","name":"eCommerce","project_count":"0","seo_url":"eCommerce"},{"id":"104","name":"Editing","project_count":"0","seo_url":"Editing"},{"id":"109","name":"Education &amp; Tutoring","project_count":"0","seo_url":"Education-Tutoring"},{"id":"184","name":"Electrical Engineering","project_count":"0","seo_url":"Electrical-Engineering"},{"id":"159","name":"Electronic Forms","project_count":"0","seo_url":"Electronic-Forms"},{"id":"43","name":"Electronics","project_count":"0","seo_url":"Electronics"},{"id":"191","name":"Embedded Software","project_count":"0","seo_url":"Embedded-Software"},{"id":"326","name":"Employment Law","project_count":"0","seo_url":"Employment-Law"},{"id":"42","name":"Engineering","project_count":"0","seo_url":"Engineering"},{"id":"110","name":"Erlang","project_count":"1","seo_url":"Erlang"},{"id":"272","name":"ERP","project_count":"0","seo_url":"ERP"},{"id":"290","name":"Event Planning","project_count":"0","seo_url":"EventPlanning"},{"id":"55","name":"Excel","project_count":"0","seo_url":"Excel"},{"id":"155","name":"Expression Engine","project_count":"0","seo_url":"Expression-Engine"},{"id":"74","name":"Facebook","project_count":"0","seo_url":"Facebook"},{"id":"127","name":"Fashion Design","project_count":"0","seo_url":"Fashion-Design"},{"id":"175","name":"Fiction","project_count":"0","seo_url":"Fiction"},{"id":"179","name":"Finance","project_count":"0","seo_url":"Finance"},{"id":"227","name":"Financial Markets","project_count":"0","seo_url":"Financial-Markets"},{"id":"86","name":"Financial Research","project_count":"0","seo_url":"Financial-Research"},{"id":"193","name":"Finite Element Analysis","project_count":"0","seo_url":"Finite-Element-Analysis"},{"id":"12","name":"Flash","project_count":"2","seo_url":"Flash"},{"id":"78","name":"Flex","project_count":"0","seo_url":"Flex"},{"id":"264","name":"Format &amp; Layout","project_count":"0","seo_url":"Format-Layout"},{"id":"308","name":"Fortran","project_count":"0","seo_url":"Fortran"},{"id":"164","name":"Forum Posting","project_count":"1","seo_url":"Forum-Posting"},{"id":"150","name":"Forum Software","project_count":"0","seo_url":"Forum-Software"},{"id":"60","name":"Game Design","project_count":"0","seo_url":"Game-Design"},{"id":"200","name":"Genealogy","project_count":"0","seo_url":"Genealogy"},{"id":"321","name":"Geolocation","project_count":"0","seo_url":"Geolocation"},{"id":"239","name":"Geology","project_count":"0","seo_url":"Geology"},{"id":"156","name":"Ghostwriting","project_count":"0","seo_url":"Ghostwriting"},{"id":"302","name":"Google Adsense","project_count":"0","seo_url":"Google-Adsense"},{"id":"298","name":"Google Analytics","project_count":"0","seo_url":"Google-Analytics"},{"id":"131","name":"Google App Engine","project_count":"0","seo_url":"Google-App-Engine"},{"id":"309","name":"Google Buzz","project_count":"0","seo_url":"Google-Buzz"},{"id":"248","name":"Google Go","project_count":"0","seo_url":"Google-Go"},{"id":"153","name":"Google Wave","project_count":"1","seo_url":"Google-Wave"},{"id":"266","name":"GPGPU","project_count":"0","seo_url":"GPGPU"},{"id":"246","name":"Grant Writing","project_count":"0","seo_url":"Grant-Writing"},{"id":"20","name":"Graphic Design","project_count":"1","seo_url":"Graphic-Design"},{"id":"300","name":"Health","project_count":"0","seo_url":"Health"},{"id":"162","name":"Home Design","project_count":"0","seo_url":"Home-Design"},{"id":"274","name":"HP Openview","project_count":"0","seo_url":"HP-Openview"},{"id":"335","name":"HTML","project_count":"2","seo_url":"HTML.1"},{"id":"323","name":"HTML5","project_count":"2","seo_url":"HTML"},{"id":"145","name":"Human Resources","project_count":"0","seo_url":"Human-Resources"},{"id":"225","name":"IIS","project_count":"0","seo_url":"IIS"},{"id":"170","name":"Illustration","project_count":"0","seo_url":"Illustration"},{"id":"70","name":"Illustrator","project_count":"0","seo_url":"Illustrator"},{"id":"168","name":"InDesign","project_count":"0","seo_url":"Indesign"},{"id":"61","name":"Industrial Design","project_count":"0","seo_url":"Industrial-Design"},{"id":"154","name":"Insurance","project_count":"0","seo_url":"Insurance"},{"id":"277","name":"Interior Design","project_count":"0","seo_url":"Interior-Design"},{"id":"25","name":"Internet Marketing","project_count":"0","seo_url":"Internet-Marketing"},{"id":"289","name":"Inventory Management","project_count":"0","seo_url":"Inventory-Management"},{"id":"307","name":"iPad","project_count":"5","seo_url":"iPad"},{"id":"58","name":"iPhone","project_count":"7","seo_url":"iPhone"},{"id":"337","name":"ISO9001","project_count":"0","seo_url":"ISO"},{"id":"45","name":"J2EE","project_count":"0","seo_url":"J-EE"},{"id":"295","name":"J2ME","project_count":"0","seo_url":"J-ME"},{"id":"7","name":"Java","project_count":"2","seo_url":"Java"},{"id":"112","name":"JavaFX","project_count":"0","seo_url":"JavaFX"},{"id":"9","name":"Javascript","project_count":"2","seo_url":"Javascript"},{"id":"54","name":"Joomla","project_count":"0","seo_url":"Joomla"},{"id":"8","name":"JSP","project_count":"0","seo_url":"JSP"},{"id":"254","name":"LaTeX","project_count":"0","seo_url":"LaTeX"},{"id":"177","name":"Leads","project_count":"0","seo_url":"Leads"},{"id":"24","name":"Legal","project_count":"0","seo_url":"Legal"},{"id":"183","name":"Legal Research","project_count":"0","seo_url":"Legal-Research"},{"id":"40","name":"Link Building","project_count":"0","seo_url":"Link-Building"},{"id":"31","name":"Linux","project_count":"0","seo_url":"Linux"},{"id":"212","name":"Logistics &amp; Shipping","project_count":"0","seo_url":"Logistics-Shipping"},{"id":"32","name":"Logo Design","project_count":"0","seo_url":"Logo-Design"},{"id":"142","name":"Mac OS","project_count":"1","seo_url":"MacOS"},{"id":"292","name":"Machine Learning","project_count":"0","seo_url":"Machine-Learning"},{"id":"90","name":"Magento","project_count":"2","seo_url":"Magento"},{"id":"178","name":"Management","project_count":"0","seo_url":"Management"},{"id":"83","name":"Manufacturing","project_count":"0","seo_url":"Manufacturing"},{"id":"303","name":"Manufacturing Design","project_count":"0","seo_url":"Manufacturing-Design"},{"id":"339","name":"Market Research","project_count":"0","seo_url":"Market-Research"},{"id":"82","name":"Marketing","project_count":"29","seo_url":"Marketing"},{"id":"185","name":"Materials Engineering","project_count":"0","seo_url":"Materials-Engineering"},{"id":"329","name":"Mathematics","project_count":"0","seo_url":"Mathematics"},{"id":"63","name":"Matlab &amp; Mathematica","project_count":"1","seo_url":"Matlab-Mathematica"},{"id":"173","name":"Maya","project_count":"0","seo_url":"Maya"},{"id":"166","name":"Mechanical Engineering","project_count":"0","seo_url":"Mechanical-Engineering"},{"id":"192","name":"Mechatronics","project_count":"0","seo_url":"Mechatronics"},{"id":"176","name":"Medical","project_count":"0","seo_url":"Medical"},{"id":"195","name":"Medical Writing","project_count":"0","seo_url":"Medical-Writing"},{"id":"148","name":"Metatrader","project_count":"0","seo_url":"Metatrader"},{"id":"111","name":"Microcontroller","project_count":"0","seo_url":"Microcontroller"},{"id":"291","name":"Microsoft","project_count":"0","seo_url":"Microsoft"},{"id":"124","name":"Microsoft Access","project_count":"0","seo_url":"Microsoft-Access"},{"id":"222","name":"Microsoft Exchange","project_count":"0","seo_url":"Microsoft-Exchange"},{"id":"249","name":"Microsoft Expression","project_count":"0","seo_url":"Microsoft-Expression"},{"id":"328","name":"Mining Engineering","project_count":"0","seo_url":"Mining-Engineering"},{"id":"151","name":"MLM","project_count":"0","seo_url":"MLM"},{"id":"91","name":"MMORPG","project_count":"0","seo_url":"MMORPG"},{"id":"44","name":"Mobile Phone","project_count":"0","seo_url":"Mobile-Phone"},{"id":"230","name":"MODx","project_count":"0","seo_url":"MODx"},{"id":"172","name":"Music","project_count":"0","seo_url":"Music"},{"id":"96","name":"MySpace","project_count":"0","seo_url":"MySpace"},{"id":"305","name":"MySQL","project_count":"4","seo_url":"MySQL"},{"id":"293","name":"Natural Language","project_count":"0","seo_url":"Natural-Language"},{"id":"301","name":"Nginx","project_count":"0","seo_url":"Nginx"},{"id":"280","name":"Nokia","project_count":"0","seo_url":"Nokia"},{"id":"287","name":"NoSQL Couch &amp; Mongo","project_count":"0","seo_url":"NoSQL-Couch-Mongo"},{"id":"322","name":"Nutrition","project_count":"0","seo_url":"Nutrition"},{"id":"143","name":"Objective C","project_count":"0","seo_url":"Objective-C"},{"id":"118","name":"Oracle","project_count":"0","seo_url":"Oracle"},{"id":"218","name":"Order Processing","project_count":"0","seo_url":"Order-Processing"},{"id":"231","name":"OSCommerce","project_count":"0","seo_url":"OSCommerce"},{"id":"134","name":"Palm","project_count":"14","seo_url":"Palm"},{"id":"311","name":"Papervision3D","project_count":"0","seo_url":"Papervision-D"},{"id":"226","name":"Patents","project_count":"0","seo_url":"Patents"},{"id":"138","name":"Paypal API","project_count":"1","seo_url":"Paypal-API"},{"id":"288","name":"Payroll","project_count":"0","seo_url":"Payroll"},{"id":"265","name":"PCB Layout","project_count":"0","seo_url":"PCB-Layout"},{"id":"158","name":"PDF","project_count":"0","seo_url":"PDF"},{"id":"314","name":"Pentaho","project_count":"0","seo_url":"Pentaho"},{"id":"132","name":"PeopleSoft","project_count":"0","seo_url":"PeopleSoft"},{"id":"4","name":"Perl","project_count":"1","seo_url":"Perl"},{"id":"217","name":"Phone Support","project_count":"1","seo_url":"Phone-Support"},{"id":"204","name":"Photo Editing","project_count":"0","seo_url":"Photo-Editing"},{"id":"27","name":"Photography","project_count":"29","seo_url":"Photography"},{"id":"57","name":"Photoshop","project_count":"0","seo_url":"Photoshop"},{"id":"108","name":"Photoshop Coding","project_count":"0","seo_url":"Photoshop-Coding"},{"id":"284","name":"Photoshop Design","project_count":"0","seo_url":"Photoshop-Design"},{"id":"3","name":"PHP","project_count":"34","seo_url":"PHP"},{"id":"163","name":"PLC &amp; SCADA","project_count":"0","seo_url":"PLC-SCADA"},{"id":"80","name":"Powerpoint","project_count":"0","seo_url":"Powerpoint"},{"id":"304","name":"Prestashop","project_count":"0","seo_url":"Prestashop"},{"id":"157","name":"Print","project_count":"29","seo_url":"Print"},{"id":"203","name":"Product Descriptions","project_count":"0","seo_url":"Product-Descriptions"},{"id":"324","name":"Product Design","project_count":"0","seo_url":"Product-Design"},{"id":"62","name":"Product Sourcing","project_count":"0","seo_url":"Product-Sourcing"},{"id":"37","name":"Project Management","project_count":"0","seo_url":"Project-Management"},{"id":"241","name":"Project Scheduling","project_count":"0","seo_url":"Project-Scheduling"},{"id":"294","name":"Prolog","project_count":"0","seo_url":"Prolog"},{"id":"48","name":"Proofreading","project_count":"0","seo_url":"Proofreading"},{"id":"325","name":"Property Law","project_count":"0","seo_url":"Property-Law"},{"id":"243","name":"Protoshare","project_count":"0","seo_url":"Protoshare"},{"id":"247","name":"PSD to HTML","project_count":"0","seo_url":"PSD-to-HTML"},{"id":"268","name":"PSD2CMS","project_count":"0","seo_url":"PSD-CMS"},{"id":"297","name":"Public Relations","project_count":"0","seo_url":"Public-Relations"},{"id":"114","name":"Publishing","project_count":"0","seo_url":"Publishing"},{"id":"13","name":"Python","project_count":"3","seo_url":"Python"},{"id":"201","name":"Quantum","project_count":"0","seo_url":"Quantum"},{"id":"259","name":"QuarkXPress","project_count":"0","seo_url":"QuarkXPress"},{"id":"180","name":"Quickbooks &amp; Quicken","project_count":"0","seo_url":"Quickbooks-Quicken"},{"id":"221","name":"REALbasic","project_count":"0","seo_url":"REALbasic"},{"id":"207","name":"Recruitment","project_count":"0","seo_url":"Recruitment"},{"id":"123","name":"Report Writing","project_count":"0","seo_url":"Report-Writing"},{"id":"47","name":"Research","project_count":"0","seo_url":"Research"},{"id":"202","name":"Reviews","project_count":"0","seo_url":"Reviews"},{"id":"50","name":"Ruby &amp; Ruby on Rails","project_count":"0","seo_url":"Ruby-on-Rails"},{"id":"64","name":"Sales","project_count":"0","seo_url":"Sales"},{"id":"318","name":"Salesforce.com","project_count":"0","seo_url":"Salesforce-com"},{"id":"315","name":"Samsung","project_count":"0","seo_url":"Samsung"},{"id":"267","name":"SAP","project_count":"0","seo_url":"SAP"},{"id":"85","name":"Scientific Research","project_count":"0","seo_url":"Scientific-Research"},{"id":"16","name":"Script Install","project_count":"0","seo_url":"Script-Install"},{"id":"66","name":"SEM \/ Adwords","project_count":"0","seo_url":"SEM-Adwords"},{"id":"38","name":"SEO","project_count":"0","seo_url":"SEO"},{"id":"146","name":"Sharepoint","project_count":"0","seo_url":"Sharepoint"},{"id":"270","name":"Shell Script","project_count":"0","seo_url":"Shell-Script"},{"id":"56","name":"Shopping Carts","project_count":"0","seo_url":"Shopping-Carts"},{"id":"161","name":"Silverlight","project_count":"0","seo_url":"Silverlight"},{"id":"136","name":"Social Engine","project_count":"0","seo_url":"Social-Engine"},{"id":"65","name":"Social Networking","project_count":"0","seo_url":"Social-Networking"},{"id":"116","name":"Software Architecture","project_count":"1","seo_url":"Software-Architecture"},{"id":"167","name":"Software Testing","project_count":"1","seo_url":"Software-Testing"},{"id":"333","name":"Solaris","project_count":"0","seo_url":"Solaris"},{"id":"139","name":"Solidworks","project_count":"0","seo_url":"Solidworks"},{"id":"189","name":"Sports","project_count":"0","seo_url":"Sports"},{"id":"68","name":"SQL","project_count":"0","seo_url":"SQL"},{"id":"196","name":"Stationery Design","project_count":"0","seo_url":"Stationery-Design"},{"id":"119","name":"Statistics","project_count":"0","seo_url":"Statistics"},{"id":"188","name":"Structural Engineering","project_count":"0","seo_url":"Structural-Engineering"},{"id":"211","name":"Supplier Sourcing","project_count":"0","seo_url":"Supplier-Sourcing"},{"id":"117","name":"Symbian","project_count":"0","seo_url":"Symbian"},{"id":"30","name":"System Admin","project_count":"0","seo_url":"System-Admin"},{"id":"181","name":"Tax","project_count":"0","seo_url":"Tax"},{"id":"327","name":"Tax Law","project_count":"0","seo_url":"Tax-Law"},{"id":"216","name":"Technical Support","project_count":"0","seo_url":"Technical-Support"},{"id":"103","name":"Technical Writing","project_count":"0","seo_url":"Technical-Writing"},{"id":"49","name":"Telemarketing","project_count":"0","seo_url":"Telemarketing"},{"id":"269","name":"Templates","project_count":"0","seo_url":"Templates"},{"id":"208","name":"Test Automation","project_count":"0","seo_url":"Test-Automation"},{"id":"67","name":"Testing \/ QA","project_count":"1","seo_url":"Testing-QA"},{"id":"46","name":"Training","project_count":"0","seo_url":"Training"},{"id":"121","name":"Transcription","project_count":"0","seo_url":"Transcription"},{"id":"22","name":"Translation","project_count":"1","seo_url":"Translation"},{"id":"238","name":"Travel Writing","project_count":"0","seo_url":"Travel-Writing"},{"id":"102","name":"Troubleshooting","project_count":"0","seo_url":"Troubleshooting"},{"id":"72","name":"Twitter","project_count":"0","seo_url":"Twitter"},{"id":"99","name":"Typography","project_count":"0","seo_url":"Typography"},{"id":"101","name":"UML Design","project_count":"0","seo_url":"UML-Design"},{"id":"336","name":"UNIX","project_count":"0","seo_url":"UNIX"},{"id":"317","name":"Usability Testing","project_count":"0","seo_url":"Usability-Testing"},{"id":"115","name":"User Interface \/ IA","project_count":"0","seo_url":"User-Interface-IA"},{"id":"332","name":"Valuation &amp; Appraisal","project_count":"0","seo_url":"Valuation-amp-Appraisal"},{"id":"233","name":"vBulletin","project_count":"0","seo_url":"vBulletin"},{"id":"71","name":"Verilog \/ VHDL","project_count":"0","seo_url":"Verilog-VHDL"},{"id":"283","name":"Video Broadcasting","project_count":"0","seo_url":"Video-Broadcasting"},{"id":"52","name":"Video Services","project_count":"0","seo_url":"Video-Services"},{"id":"198","name":"Video Upload","project_count":"0","seo_url":"Video-Upload"},{"id":"129","name":"Virtual Assistant","project_count":"0","seo_url":"Virtual-Assistant"},{"id":"253","name":"Virtual Worlds","project_count":"0","seo_url":"Virtual-Worlds"},{"id":"14","name":"Visual Basic","project_count":"0","seo_url":"Visual-Basic"},{"id":"209","name":"Voice Talent","project_count":"0","seo_url":"Voice-Talent"},{"id":"258","name":"VoIP","project_count":"0","seo_url":"VoIP"},{"id":"122","name":"Volusion","project_count":"0","seo_url":"Volusion"},{"id":"299","name":"vTiger","project_count":"0","seo_url":"vTiger"},{"id":"95","name":"Web Scraping","project_count":"0","seo_url":"Web-Scraping"},{"id":"199","name":"Web Search","project_count":"0","seo_url":"Web-Search"},{"id":"33","name":"Web Security","project_count":"0","seo_url":"Web-Security"},{"id":"17","name":"Website Design","project_count":"0","seo_url":"Website-Design"},{"id":"219","name":"Website Testing","project_count":"0","seo_url":"Website-Testing"},{"id":"228","name":"Weddings","project_count":"0","seo_url":"Weddings"},{"id":"29","name":"Windows","project_count":"0","seo_url":"Windows"},{"id":"296","name":"Windows CE","project_count":"0","seo_url":"Windows CE"},{"id":"140","name":"Windows Mobile","project_count":"0","seo_url":"Windows-Mobile"},{"id":"41","name":"Wireless","project_count":"0","seo_url":"Wireless"},{"id":"197","name":"Word","project_count":"0","seo_url":"Word"},{"id":"69","name":"Wordpress","project_count":"0","seo_url":"Wordpress"},{"id":"10","name":"XML","project_count":"1","seo_url":"XML"},{"id":"88","name":"XXX","project_count":"3","seo_url":"XXX"},{"id":"152","name":"YouTube","project_count":"0","seo_url":"YouTube"},{"id":"205","name":"Zen Cart","project_count":"0","seo_url":"Zen-Cart"},{"id":"236","name":"Zend","project_count":"0","seo_url":"Zend"}]}}
@@ -0,0 +1,17 @@
1
+ <xml-result>
2
+ <count>281</count>
3
+ <items>
4
+ <Job>
5
+ <id>15</id>
6
+ <name>.NET</name>
7
+ <project_count>181</project_count>
8
+ <seo_url>NET</seo_url>
9
+ </Job>
10
+ <Job>
11
+ <id>194</id>
12
+ <name>Academic Writing</name>
13
+ <project_count>104</project_count>
14
+ <seo_url>Academic-Writing</seo_url>
15
+ </Job>
16
+ </items>
17
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":4,"items":{"job":["3","4","8","50"]}}}
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>5</count>
4
+ <items>
5
+ <job>7</job>
6
+ <job>9</job>
7
+ <job>15</job>
8
+ <job>51</job>
9
+ <job>318</job>
10
+ </items>
11
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":1,"items":[{"id":"203","projectid":"281","fromusername":"test-username","fromuserid":"123456","datetime":"2010-08-08 02:17:35","text":"Test","new":"1","attachmentlink":[]}]}}
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>2</count>
4
+ <items>
5
+ <message>
6
+ <projectid>658028</projectid>
7
+ <fromusername>lsy003</fromusername>
8
+ <fromuserid>1619638</fromuserid>
9
+ <datetime>2010-04-19 23:45:48</datetime>
10
+ <message>msg post online</message>
11
+ <attachmentlink />
12
+ </message>
13
+ <message>
14
+ <projectid>658028</projectid>
15
+ <fromusername>shaneyls</fromusername>
16
+ <fromuserid>1289625</fromuserid>
17
+ <datetime>2010-04-14 21:20:40</datetime>
18
+ <message>reply ...</message>
19
+ <attachmentlink />
20
+ </message>
21
+ </items>
22
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":2,"items":[{"projectid":"281","tousername":"test-username","touserid":"123456","datetime":"2010-08-08 02:17:17","text":"Test","attachmentlink":[]},{"projectid":"281","tousername":"test-username","touserid":"123456","datetime":"2010-08-08 02:16:52","text":"Test test test","attachmentlink":[]}]}}
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>2</count>
4
+ <items>
5
+ <message>
6
+ <projectid>658028</projectid>
7
+ <tousername>shaneyls</messagetousername>
8
+ <touserid>1289625</messagetouserid>
9
+ <datetime>2010-04-20 22:19:59</messagedatetime>
10
+ <message>posted by API</message>
11
+ <attachmentlink />
12
+ </message>
13
+ <message>
14
+ <projectid>658028</projectid>
15
+ <tousername>shaneyls</messagetousername>
16
+ <touserid>1289625</messagetouserid>
17
+ <datetime>2010-04-14 21:01:13</messagedatetime>
18
+ <message>posted by API</message>
19
+ <attachmentlink />
20
+ </message>
21
+ </items>
22
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"unreadcount":"1"}}
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <unreadcount>2</unreadcount>
4
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":3,"items":{"message":[{"id":"203","projectid":"281","fromusername":"test-username","fromuserid":"123456","tousername":"test-username","touserid":"123456","datetime":"2010-08-08 02:17:35","text":"Test","new":"1","attachmentlink":[]},{"id":"202","projectid":"281","fromusername":"test-username","fromuserid":"123456","tousername":"test-username","touserid":"123456","datetime":"2010-08-08 02:17:17","text":"Test","new":"0","attachmentlink":[]},{"id":"201","projectid":"281","fromusername":"test-username","fromuserid":"123456","tousername":"test-username","touserid":"123456","datetime":"2010-08-08 02:16:52","text":"Test test test","new":"0","attachmentlink":[]}]}}}
@@ -0,0 +1,54 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>4</count>
4
+ <items>
5
+ <message>
6
+ <id>13156760</id>
7
+ <projectid>585507</projectid>
8
+ <fromusername>lishengYul</fromusername>
9
+ <fromuserid>1346994</fromuserid>
10
+ <tousername>lyux</tousername>
11
+ <touserid>1289625</touserid>
12
+ <datetime>2010-01-08 02:45:05</datetime>
13
+ <text>Message text 1</text>
14
+ <new>0</new>
15
+ <attachmentlink />
16
+ </message>
17
+ <message>
18
+ <id>13156757</id>
19
+ <projectid>585507</projectid>
20
+ <fromusername>lishengYul</fromusername>
21
+ <fromuserid>1346994</fromuserid>
22
+ <tousername>lyux</tousername>
23
+ <touserid>1289625</touserid>
24
+ <datetime>2010-01-08 02:45:02</datetime>
25
+ <text>Message text 2</text>
26
+ <new>0</new>
27
+ <attachmentlink />
28
+ </message>
29
+ <message>
30
+ <id>13156140</id>
31
+ <projectid>585507</projectid>
32
+ <fromusername>lyux</fromusername>
33
+ <fromuserid>1289625</fromuserid>
34
+ <tousername>lishengYul</tousername>
35
+ <touserid>1346994</touserid>
36
+ <datetime>2010-01-08 01:58:19</datetime>
37
+ <text>Message text 3</text>
38
+ <new>0</new>
39
+ <attachmentlink />
40
+ </message>
41
+ <message>
42
+ <id>13156123</id>
43
+ <projectid>585507</projectid>
44
+ <fromusername>lyux</fromusername>
45
+ <fromuserid>1289625</fromuserid>
46
+ <tousername>lishengYul</tousername>
47
+ <touserid>1346994</touserid>
48
+ <datetime />
49
+ <text>Message text 4</text>
50
+ <new>0</new>
51
+ <attachmentlink />
52
+ </message>
53
+ </items>
54
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"statusconfirmation":1}}
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result>
3
+ <statusconfirmation>1</statusconfirmation>
4
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"statusconfirmation":1}}
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result>
3
+ <statusconfirmation>1</statusconfirmation>
4
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":8,"items":[{"newsid":"177","newstext":"We have implemented a new feature allowing freelancers, when bidding on a project, to specify the required initial milestone percentage. For example, if you specify a 50% milestone percentage, this means you require the employer to create a 50% milestone payment before you start work on the project.\r\n\r\nMilestone payments are a great way to create trust between a freelancer and an employer, and are designed to protect both parties. We recommend freelancers specify a milestone percentage for your bids, especially if you are bidding on large projects. Milestone payments protect employers since the money is not released to the freelancer until they complete the work, and the employer is happy with the job\r\nthey have done.\r\n\r\nThe system does not automatically create the milestone\r\npayment when the project starts. The employer will need to create the agreed milestone once the bid is accepted by both parties. The milestone percentage succinctly shows the terms of engagement the freelancer is looking for."},{"newsid":"176","newstext":"<br>\r\n<h2>FreelancerAPI in New Scientist<\/h2>\r\n<br>\r\n<a href=\"http:\/\/www.newscientist.com\/article\/mg20627595.300-become-a-wage-slave-to-software.html\">Read the article here<\/a>."},{"newsid":"175","newstext":"<br> <h2>Add your education details and awards to your profile now!<\/h2> <br> You can now add your education history, awards you've won or licenses you hold to your profile. After logging in you'll find \"My Credentials\" under the \"My Profile\" menu, from there is it easy to add these details. Employers like to know about your experience and qualifications and will highly value that information. Add your credentials today!"},{"newsid":"171","newstext":"<br><h2>Today (April 9th 2010) we hit 1.5 million users!!<\/h2> <br><a href=\"\/quotes\"><img src=\"\/img\/hits15.png\" width=650><\/a><br> <br>We literally couldn't have done it without all of you!! We'd love to hear from you about what Freelancer.com means to you as we head to 2 million!<br><br> <h2> <a href=\"\/quotes\">Click here to send us a message!<\/a><\/h2>"},{"newsid":"169","newstext":"<br> <h2>Wanted! Testimonials from Employers!<\/h2> <br> Hi there! We are looking for Freelancer.com success stories. If you are an employer from the US, UK, Canada or Australia and have had a good experience on Freelancer with a particular project, we'd love to hear from you! Perhaps a freelancer designed an amazing website for your business or perhaps you outsourced something you never thought you could outsource! If we write you up as a case study we'll also reimburse you 50% of all the costs of your project up to a total of $500! Contact <a href=\"mailto:alaister@freelancer.com\">alaister@freelancer.com<\/a> if you have a great story."},{"newsid":"134","newstext":"Please be advised the following projects are banned on Freelancer.com:\r\n<ul>\r\n<li>Selling of PVAs, Paypal, eBay accounts\r\n<li>Money exchange projects (Liberty Reserve, AlertPay, WebMoney)\r\n<\/ul>\r\nPlease do not participate in these projects or you risk having your account suspended."},{"newsid":"132","newstext":"Thanks to edvans for the following <a href=\"\/Freelancer_Origami_medium.pdf\">instructions<\/a>."},{"newsid":"102","newstext":"Think we're missing a job category that you'd like added? Let us know by lodging a support ticket under \"Category Request\"! "}]}}
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>2</count>
4
+ <items>
5
+ <news>
6
+ <newsid>132</newsid>
7
+ <newstext>Thanks to edvans for the following <a href="/Freelancer_Origami_medium.pdf">instructions</a>.</newstext>
8
+ </news>
9
+ <news>
10
+ <newsid>102</newsid>
11
+ <newstext>Think we&apos;re missing a job category that you&apos;d like added? Let us know by lodging a support ticket under "Category Request"! </newstext>
12
+ </news>
13
+ </items>
14
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":1,"items":{"notification":[{"notificationtext":"Test notification","url":"http://www.sandbox.freelancer.com/"}]}}}
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>1</count>
4
+ <items>
5
+ <notification>
6
+ <notificationtext>Your user profile hasn&apos;t been filled yet. <a href=&apos;../users/changeuserinfo.php&apos;>Click here</a> to fill it in</notificationtext>
7
+ <url>http://www.sandbox.freelancer.com/users/changeuserinfo.php</url>
8
+ </notification>
9
+ </items>
10
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"statusconfirmation":1}}
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <statusconfirmation>1</statusconfirmation>
4
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"statusconfirmation":1}}
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <statusconfirmation>1</statusconfirmation>
4
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"balanceamount":9717.55,"transtext":"Transfer from test-username for project Test project (Full payment for completed project)","textlinks":{"userlink":"http://www.sandbox.freelancer.com/users/123456.html","projectlink":"http://www.sandbox.freelancer.com/projects/280.html"},"transactionid":"987","transuserid":"123456","transdatetime":"08/08/2010 at 1:53 EDT"}}
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <balanceamount>19608.76</balanceamount>
4
+ <transtext>Transfer to shaneyls for project test project 1 posted by API curl (Partial payment for project)</transtext>
5
+ <textlinks>
6
+ <userlink>http://www.sandbox.freelancer.com/users/1289625.html</userlink>
7
+ <projectlink>http://www.sandbox.freelancer.com/projects/658026.html</projectlink>
8
+ </textlinks>
9
+ <transactionid>3165579</transactionid>
10
+ <transuserid>1619632</transuserid>
11
+ <transdatetime>04/26/2010 at 20:30 EDT</transdatetime>
12
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":1,"items":[{"id":"988","username":"test-username","userid":"123456","date":"2010-08-08 02:00:42","projectid":"148","projectname":"Test project to get some reviews on my account","reason":"Full payment for completed project","amount":"25"}]}}
@@ -0,0 +1,30 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>3</count>
4
+ <items>
5
+ <milestone>
6
+ <id>2764466</id>
7
+ <username>shaneyls</username>
8
+ <date>2010-02-03 19:45:46</date>
9
+ <projectid>588911</projectid>
10
+ <projectname>test for milestone payment II</projectname>
11
+ <reason>Full payment for completed project</reason>
12
+ </milestone>
13
+ <milestone>
14
+ <id>2765067</id>
15
+ <username>lsy003</username>
16
+ <date>2010-04-07 03:02:54</date>
17
+ <projectid>589075</projectid>
18
+ <projectname>test for bidding</projectname>
19
+ <reason>Full payment for completed project</reason>
20
+ </milestone>
21
+ <milestone>
22
+ <id>2765068</id>
23
+ <username>lsy003</username>
24
+ <date>2010-04-07 03:05:19</date>
25
+ <projectid>589075</projectid>
26
+ <projectname>test for bidding</projectname>
27
+ <reason>Full payment for completed project</reason>
28
+ </milestone>
29
+ </items>
30
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":8,"items":[{"balanceamount":"250","transtext":"Transfer from test-username for project Test project (Full payment for completed project)","textlinks":{"userlink":"http://www.sandbox.freelancer.com/users/123456.html","projectlink":"http://www.sandbox.freelancer.com/projects/280.html"},"transactionid":"987","transdatetime":"2010-08-08 01:53:33"},{"balanceamount":"-7.5","transtext":"Project fee taken (Test project)","textlinks":{"projectlink":"http://www.sandbox.freelancer.com/projects/280.html"},"transactionid":"984","transdatetime":"2010-08-08 01:53:10","linkinvoice":"http:\/\/www.sandbox.freelancer.com\/payments\/print-invoice.php?invoice=984"},{"balanceamount":"-500","transtext":"Transfer to mariellejl for project Test project to get some reviews on my account (Full payment for completed project)","textlinks":{"userlink":"http:\/\/www.sandbox.freelancer.com\/users\/1619838.html","projectlink":"http:\/\/www.sandbox.freelancer.com\/projects\/148.html"},"transactionid":"981","transdatetime":"2010-08-08 01:50:01"},{"balanceamount":"5","transtext":"Refund on [Refundable project fee taken (Test project to get some reviews on my account) from 06\/05\/2010 at 1:48 EDT]","textlinks":{"projectlink":"http:\/\/www.sandbox.freelancer.com\/projects\/148.html"},"transactionid":"980","transdatetime":"2010-08-08 01:48:54"},{"balanceamount":"-5","transtext":"Refundable project fee taken (Test project name)","textlinks":{"projectlink":"http:\/\/www.sandbox.freelancer.com\/projects\/279.html"},"transactionid":"977","transdatetime":"2010-08-08 01:34:34","linkinvoice":"http:\/\/www.sandbox.freelancer.com\/payments\/print-invoice.php?invoice=977"},{"balanceamount":"-5","transtext":"Refundable project fee taken (Test project to get some reviews on my account)","textlinks":{"projectlink":"http:\/\/www.sandbox.freelancer.com\/projects\/148.html"},"transactionid":"473","transdatetime":"2010-06-05 01:48:38","linkinvoice":"http:\/\/www.sandbox.freelancer.com\/payments\/print-invoice.php?invoice=473"},{"balanceamount":"-19.95","transtext":["Monthly Gold member fee"],"textlinks":null,"transactionid":"469","transdatetime":"2010-06-04 17:38:18","linkinvoice":"http:\/\/www.sandbox.freelancer.com\/payments\/print-invoice.php?invoice=469"},{"balanceamount":"10000","transtext":["Initial sandbox deposit"],"textlinks":null,"transactionid":"468","transdatetime":"2010-06-04 17:37:36"}]}}
@@ -0,0 +1,57 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
4
+ <count>5</count>
5
+ <items>
6
+ <transaction>
7
+ <balanceamount>-200</balanceamount>
8
+ <transtext>Transfer to shaneyls for project test project 1 posted by API curl (Partial payment for project)</transtext>
9
+ <textlinks>
10
+ <userlink>http://www.sandbox.freelancer.com/users/1289625.html</userlink>
11
+ <projectlink>http://www.sandbox.freelancer.com/projects/658026.html</projectlink>
12
+ </textlinks>
13
+ <transactionid>3165579</transactionid>
14
+ <transdatetime>2010-04-26 20:30:00</transdatetime>
15
+ </transaction>
16
+ <transaction>
17
+ <balanceamount>-5.5</balanceamount>
18
+ <transtext>Project fee taken (project for lsy001)</transtext>
19
+ <textlinks>
20
+ <projectlink>http://www.sandbox.freelancer.com/projects/658031.html</projectlink>
21
+ </textlinks>
22
+ <transactionid>3165258</transactionid>
23
+ <transdatetime>2010-04-15 01:11:03</transdatetime>
24
+ <linkinvoice>http://www.sandbox.freelancer.com/payments/print-invoice.php?invoice=3165258</linkinvoice>
25
+ </transaction>
26
+ <transaction>
27
+ <balanceamount>-5.5</balanceamount>
28
+ <transtext>Refundable project fee taken (test project 33 posted by API curl)</transtext>
29
+ <textlinks>
30
+ <projectlink>http://www.sandbox.freelancer.com/projects/658030.html</projectlink>
31
+ </textlinks>
32
+ <transactionid>3165242</transactionid>
33
+ <transdatetime>2010-04-14 20:36:05</transdatetime>
34
+ <linkinvoice>http://www.sandbox.freelancer.com/payments/print-invoice.php?invoice=3165242</linkinvoice>
35
+ </transaction>
36
+ <transaction>
37
+ <balanceamount>-80</balanceamount>
38
+ <transtext>Milestone Payment to shaneyls for project test project 1 posted by API curl (Full payment for completed project)</transtext>
39
+ <textlinks>
40
+ <userlink>http://www.sandbox.freelancer.com/users/1289625.html</userlink>
41
+ <projectlink>http://www.sandbox.freelancer.com/projects/658026.html</projectlink>
42
+ </textlinks>
43
+ <transactionid>3165210</transactionid>
44
+ <transdatetime>2010-04-14 00:57:42</transdatetime>
45
+ </transaction>
46
+ <transaction>
47
+ <balanceamount>-80</balanceamount>
48
+ <transtext>Milestone Payment to shaneyls for project test project 1 posted by API curl (Full payment for completed project)</transtext>
49
+ <textlinks>
50
+ <userlink>http://www.sandbox.freelancer.com/users/1289625.html</userlink>
51
+ <projectlink>http://www.sandbox.freelancer.com/projects/658026.html</projectlink>
52
+ </textlinks>
53
+ <transactionid>3165205</transactionid>
54
+ <transdatetime>2010-04-14 00:51:54</transdatetime>
55
+ </transaction>
56
+ </items>
57
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":1,"items":[{"id":"36","type":"paypal","request_at":"2010-08-08 01:58:34","amount":"100","details":"PayPal withdrawal to email test@test.com","processing_date":"Mon, 9 - Tue, 10 Aug 2010","status":"Delay"}]}}
@@ -0,0 +1,42 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>4</count>
4
+ <items>
5
+ <withdrawal>
6
+ <id>141112</id>
7
+ <type>paypal</type>
8
+ <request_at>2010-04-07 21:38:24</request_at>
9
+ <amount>280</amount>
10
+ <details>PayPal withdrawal to email lisheng@freelancer.com </details>
11
+ <processing_date>Mon, 19 - Tue, 20 Apr 2010</processing_date>
12
+ <status>Delay</status>
13
+ </withdrawal>
14
+ <withdrawal>
15
+ <id>141113</id>
16
+ <type>paypal</type>
17
+ <request_at>2010-04-07 22:22:19</request_at>
18
+ <amount>30</amount>
19
+ <details>PayPal withdrawal to email lisheng@freelancer.com </details>
20
+ <processing_date>Mon, 19 - Tue, 20 Apr 2010</processing_date>
21
+ <status>Delay</status>
22
+ </withdrawal>
23
+ <withdrawal>
24
+ <id>141114</id>
25
+ <type>paypal</type>
26
+ <request_at>2010-04-07 22:23:24</request_at>
27
+ <amount>33</amount>
28
+ <details>PayPal withdrawal to email lisheng@freelancer.com </details>
29
+ <processing_date>Mon, 19 - Tue, 20 Apr 2010</processing_date>
30
+ <status>Delay</status>
31
+ </withdrawal>
32
+ <withdrawal>
33
+ <id>141115</id>
34
+ <type>moneybookers</type>
35
+ <request_at>2010-04-07 22:28:32</request_at>
36
+ <amount>35</amount>
37
+ <details>Moneybookers withdrawal to </details>
38
+ <processing_date>Mon, 19 - Tue, 20 Apr 2010</processing_date>
39
+ <status>Delay</status>
40
+ </withdrawal>
41
+ </items>
42
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"balance":9692.55}}
@@ -0,0 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <balance>1000.50</balance>
4
+ </xml-result>
@@ -0,0 +1 @@
1
+ {"json-result":{"count":1,"items":{"project":[{"id":"148","name":"Test project to get some reviews on my account","selectedfreelancer":[{"id":"123456","username":"test-username","bidamount":"500","paidamount":"500"}]}]}}}
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xml-result xmlns="http://api.freelancer.com/schemas/xml-0.1">
3
+ <count>4</count>
4
+ <items>
5
+ <project>
6
+ <id>730003</id>
7
+ <name>Product Configuration tool for Magento</name>
8
+ <selectedfreelancer>
9
+ <id>1382696</id>
10
+ <username>lyuy</username>
11
+ <bidamount>80</bidamount>
12
+ <paidamount>5350</paidamount>
13
+ </selectedfreelancer>
14
+ </project>
15
+ <project>
16
+ <id>730031</id>
17
+ <name>Product Configuration tool for Magento 2</name>
18
+ <selectedfreelancer>
19
+ <id>1382696</id>
20
+ <username>lyuy</username>
21
+ <bidamount>100</bidamount>
22
+ <paidamount>290</paidamount>
23
+ </selectedfreelancer>
24
+ </project>
25
+ <project>
26
+ <id>730032</id>
27
+ <name>Product Configuration tool for Magento 3</name>
28
+ <selectedfreelancer>
29
+ <id>1382696</id>
30
+ <username>lyuy</username>
31
+ <bidamount>80</bidamount>
32
+ <paidamount>0</paidamount>
33
+ </selectedfreelancer>
34
+ <selectedfreelancer>
35
+ <id>1346988</id>
36
+ <username>lishengY</username>
37
+ <bidamount>250</bidamount>
38
+ <paidamount>3000</paidamount>
39
+ </selectedfreelancer>
40
+ </project>
41
+ <project>
42
+ <id>722297</id>
43
+ <name>Project for cfk3</name>
44
+ <selectedfreelancer>
45
+ <id>756803</id>
46
+ <username>cfk</username>
47
+ <bidamount>33</bidamount>
48
+ <paidamount>0</paidamount>
49
+ </selectedfreelancer>
50
+ </project>
51
+ </items>
52
+ </xml-result>