-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial code for bookmark rm (#2)
* Add initial code for bookmark rm * Fix read_xbel_1 unit test * Add xbel example * Clean up Cargo.toml * Add sanity job in CI * Cargo fmt pass * Add Xbel::from_file && Xbel::to_file * Add git_push function * Dedup code between bookmark add & rm * Code cleanup
- Loading branch information
Showing
8 changed files
with
272 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE xbel PUBLIC "+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML" "http://pyxml.sourceforge.net/topics/dtds/xbel.dtd"> | ||
<xbel version="1.0"> | ||
<!--- highestId :4: for Floccus bookmark sync browser extension --> | ||
|
||
<folder id="1"> | ||
<title>admin</title> | ||
<folder id="2"> | ||
<title>bank</title> | ||
<bookmark href="https://www.bank1.com/" id="3"> | ||
<title>Bank 1 - Best bank in the world</title> | ||
</bookmark> | ||
<bookmark href="https://www.bank2.com/" id="4"> | ||
<title>Bank 2 because 2 gt 1 !#€</title> | ||
</bookmark> | ||
</folder> | ||
</folder> | ||
</xbel> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
mod git_command; | ||
|
||
pub use git_command::{git_clone, git_fetch, git_merge}; | ||
pub use git_command::{git_clone, git_fetch, git_merge, git_push}; |
Oops, something went wrong.