XML-Comp alternatives and similar packages
Based on the "Other Software" category.
Alternatively, view XML-Comp alternatives based on common mentions on social networks and blogs.
-
syncthing
An open, decentralized file synchronization tool and protocol. -
limetext
Lime Text is a powerful and elegant text editor primarily developed in Go that aims to be a Free and open-source software successor to Sublime Text. -
Seaweed File System
Fast, Simple and Scalable Distributed File System with O(1) disk seek. -
Gor
Http traffic replication tool, for replaying traffic from production to stage/dev environments in real-time. -
rkt
An App Container runtime that integrates with init systems, is compatible with other container formats like Docker, and supports alternative execution engines like KVM. -
croc
Easily and securely send files or folders from one computer to another. -
confd
Manage local application configuration files using templates and data from etcd or consul. -
toxiproxy
Proxy to simulate network and system conditions for automated tests. -
heka
universal tool for data processing from Mozilla. Large collection of built-in plugins. Extendable via Go and Lua plugin API. -
Duplicacy
A cross-platform network and cloud backup tool based on the idea of lock-free deduplication. -
Docker
An open platform for distributed applications for developers and sysadmins. -
scc
Sloc Cloc and Code, a very fast accurate code counter with complexity calculations and COCOMO estimates. -
lgo
Interactive Go programming with Jupyter. It supports code completion, code inspection and 100% Go compatibility. -
Circuit
Circuit is a programmable platform-as-a-service (PaaS) and/or Infrastructure-as-a-Service (IaaS), for management, discovery, synchronization and orchestration of services and hosts comprising cloud applications. -
peg
Peg, Parsing Expression Grammar, is an implementation of a Packrat parser generator. -
Go Package Store
An app that displays updates for the Go packages in your GOPATH. -
shell2http
Executing shell commands via http server (for prototyping or remote control). -
gfile
Securely transfer files between two computers, without any third party, over WebRTC. -
blocky
Fast and lightweight DNS proxy as ad-blocker for local network with many features. -
mockingjay
Fake HTTP servers and consumer driven contracts from one configuration file. You can also make the server randomly misbehave to help do more realistic performance tests. -
Gebug
A tool that makes debugging of Dockerized Go applications super easy by enabling Debugger and Hot-Reload features, seamlessly. -
ipe
An open source Pusher server implementation compatible with Pusher client libraries written in GO. -
wellington
Sass project management tool, extends the language with sprite functions (like Compass). -
tcpprobe
TCP tool for network performance and path monitoring, including socket statistics.
Scout APM - Leading-edge performance monitoring starting at $39/month
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of XML-Comp or a related project?
Popular Comparisons
README
Menu
- What is XML-Comp?
- Features
- Installing
- Running
- How this works?
- Comparing any kind of document
- Contributing
- To Do
- Using only the comparer package
What is XML-Comp
This is a command line tool and a package that together they provide the capability of comparing two directories and appending to files the differences between the directories, also creates possible files or folders that are missing. It was made to help RimWorld's community translators(1) to know what was modified on the last XML updates and to let them keep in track of what they need to add/remove from what has been done.
(1) and maybe other indie games that uses XML
Features
- [x] Compare two given directories
- [x] Append missing tags to the respective file
- [x] Creates missing files on the compared directory
- [x] Creates missing folders on the compared directory
- [x] Compare one directory with multiple directories
- [x] Compare automatically the game's english version with the given translation
- [ ] Translate tag content
- [ ] Expose untracked files
- [ ] Expose untracked directories
- [ ] Expose untracked tags
Installing
$ go get github.com/XML-Comp/XML-Comp
Running
$ XML-Comp -translation /path/to/language/translation
How this works?
You need the path that is called "translation", which are described bellow:
"translation"
: Full path directory of your RimWorld ~Language~ folder cloned from GitHub.
My "translation" path: /Users/arthur/Github/RimWorld-PortugueseBrazilian
With this path in hand, running xml-comp -translation your/path/to/translation
will let you know in every file of your project what is missing by adding lines to it with what is needed to translate! That simple!
[RIMWORLD not installed in standard path]
If by any reason you did not install the game on Steam's standard path or want to use a different one, It's possible to use the original
flag that exposes your customized path to the game as shows:
"original"
: Full path directory of your RimWorld English folder (optional). My "original" path (optional):/Users/arthur/Library/Application Support/Steam/steamapps/common/RimWorld/RimWorldMac.app/Mods/Core/Languages/English
In order to use this flag you'll need to parse it with the translation
flag as in: xml-comp -original path/... -translation path/...
Comparing any kind of document
To compare any kind of files, all you need is to use the flag -doc <type name>
, eg -doc html
. This will use the paths that you gave only to compare the specified type of document. Another example:
$ XML-Comp -doc html -original path/to/It -translation path/to/It
OBS: This is not required, by default It's comparing all .xml
files that are encountered.
Contributing
Join our Gitter
To Do - Check our Issues & Milestones
Using only the comparer package
// Import the package
import "github.com/XML-Comp/XML-Comp/comparer"
// Set document type variable to the desired document
// without the "." | eg: "xml" or "html"
comparer.DocType = "html"
// Start the main function with the full paths to compare
// the firstPath is always what will be used as model
func main() {
err := comparer.Compare(firstPath, comparingPath)
if err != nil {
log.Fatal(err)
}
}
*Note that all licence references and agreements mentioned in the XML-Comp README section above
are relevant to that project's source code only.