New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vCard/JSON extraction #19443
Closed
+894
−635
Closed
vCard/JSON extraction #19443
Changes from 2 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
eb2c7e0
Merge pull request #11 from servo/master
niravjain 015ef37
Merge pull request #12 from servo/master
CJ8664 43aeb7c
Added microdata module
niravjain f306835
Code to send msg from servo to servoshell (EmbedderMsg)
CJ8664 0530512
Merge branch 'master' of https://github.com/CJ8664/servo
CJ8664 f939632
naming convention
CJ8664 3d68d2a
trying serde_json crate
CJ8664 a4ed961
Uploading erroneous code
CJ8664 4628943
Uploading erroneous code
CJ8664 cbfc666
Merge remote-tracking branch 'refs/remotes/origin/serde_try' into ser…
CJ8664 146dd58
Merge pull request #13 from CJ8664/serde_try
CJ8664 9284187
serde json working for Hashmap
CJ8664 dd4dc70
Updated the servo-shell communication
CJ8664 43650c2
vCard working
CJ8664 19408a0
Adding adr to vCard
niravjain 79d140d
Adding adr to vCard
niravjain aab6900
Merged vcard and json logic
CJ8664 35468f8
Fixed tidy errors
niravjain 8cafd64
Updated code to pass the type of microdata as a parameter
CJ8664 87d1efa
Merge branch 'vcard' of https://github.com/CJ8664/servo into vcard
CJ8664 c580c3f
Added code to notify user via change in title
CJ8664 3cd9731
Created dummy test cases
CJ8664 d0cb12e
Removed JSON code and replaced with a stub
CJ8664 0ae2d08
Merge pull request #14 from CJ8664/vcard
CJ8664 7131823
Merge pull request #15 from servo/master
CJ8664 a3e5b9f
Updated manifest
CJ8664 0e5023d
Partially updated the code based on reviews
CJ8664 37f70c6
Fixed lint issues
CJ8664 543de1c
Fixed lint issues
CJ8664 a781bba
Merge fix
CJ8664 04a043d
Merge branch 'servo-master'
CJ8664 c740aab
Rebuild cargo
CJ8664 File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.
| @@ -0,0 +1,12 @@ | ||
| /* This Source Code Form is subject to the terms of the Mozilla Public | ||
| * License, v. 2.0. If a copy of the MPL was not distributed with this | ||
| * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
|
||
| pub struct Microdata {} | ||
|
||
|
|
||
| impl Microdata { | ||
| //[Pref="dom.microdata.testing.enabled"] | ||
| fn parse() -> bool { | ||
| true | ||
| } | ||
| } | ||
ProTip!
Use n and p to navigate between commits in a pull request.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Rather than an empty structure with static methods, we should use plain old functions in this file instead. Code in other modules can use
microdata::parseinstead.