views:

811

answers:

4

I'm interested in an online application like the tool that comes with XCode, that shows the keys and values as rows, in an editable manner and handles xml plists (I don't care if it handles binary ones as well).

+1  A: 

I don't think there are any plist editors online, at least not as functional as Plist Editor with Xcode.

You could use an online XML-editor, like Xmlia2.0, and code it yourself.

Why would you ever want an online tool for editing XML-files when you've got Plist Editor from xcode?

Emil
So I could tweak plists even when I'm not on a mac.
luvieere
Windows: http://tinyurl.com/335s3hd
Emil
Unfortunately none of those results have the same functionality as the XCode PList Editor
Ed Marty
Yeah, the Xcode Plist Editor is a great tool, I agree.I don't think any other Plist Editor has *all* of the functins that XcodePlistEditor has got.
Emil
A: 

Any web app that accepts .txt documents will edit plists just fine. Likewise for .xml

Sneakyness
"like the tool that comes with XCode, that shows the keys and values as rows"He doesn't want to deal with raw XML.
JoePasq
Yeah, well he might not have a choice, so it's a good idea to suggest alternatives now isn't it?
Sneakyness
A: 

I wrote one once back in the day (for the old non-XML plist files). The structure is very regular, so it's not hard to create something that looks and acts more or less like the XCode plist editor.

I don't know off-hand of any online XML editors, but they must exist. Given a DTD-savvy XML editor, you ought to be able to edit plist files pretty easily.

Mark Bessey
+1  A: 

I have resigned myself to the fact that there probably isn't one I will ever find. What I have found, however, is that JSON format and text PList format are very similar, and there are plenty of JSON editors available online and for windows and mac both. It may not be suitable for your needs, but it suited my needs just fine. By using nothing more than a couple of find & replaces in Notepad you can get 90% of the way to a plist file. The only big issue is semicolons vs. commas.

If you're working on a small enough file, that could be done manually. With larger files, a simple utility app to convert JSON to PList files would probably be pretty simple to whip up if you've got the urge.

Again, this all applies only to text formatted plist files. Most plist editors on mac at least can save a plist in text format.

Ed Marty