Skip to content

Commit

Permalink
Update GitHub URLs to the new repository location
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberShadow committed Mar 20, 2019
1 parent 88001b7 commit 5b6caca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ filesystems are easy to implement and have access to userland components like
HTTP libraries, etc. For more information about fuse see: http://fuse.sourceforge.net.

## Examples
A simple filesystems implementing a directory listing can be found in the [examples/](https://github.com/facebook/dfuse/tree/master/example) directory.
A simple filesystems implementing a directory listing can be found in the [example/](https://github.com/dlang-community/dfuse/tree/master/example) directory.
You can build the examples using:
```Shell
$ make examples
Expand Down Expand Up @@ -42,7 +42,7 @@ class MyFS : Operations
}
```

A minimal filesystem implements `Operations.getattr()`, `Operations.readdir()`, `Operations.read()`. See [dfuse/fuse.d](https://github.com/facebook/dfuse/blob/master/source/dfuse/fuse.d) for implementation specific details.
A minimal filesystem implements `Operations.getattr()`, `Operations.readdir()`, `Operations.read()`. See [dfuse/fuse.d](https://github.com/dlang-community/dfuse/blob/master/source/dfuse/fuse.d) for implementation specific details.

To mount a filesystem use a Fuse object and call mount:
```D
Expand Down Expand Up @@ -119,12 +119,12 @@ default implementations for all handlers and every method can be invidually
overwritten to provide an interface.

## Issues and Bugs
If you encounter issues or bugs with dfuse, please file an issue on [github](https://github.com/facebook/dfuse/issues). Please ensure that you maintain a constructive feedback atmosphere and if possible attach a reproduction step. If you have any questions, feel free to write to the D mailinglist or ask in IRC.
If you encounter issues or bugs with dfuse, please file an issue on [github](https://github.com/dlang-community/dfuse/issues). Please ensure that you maintain a constructive feedback atmosphere and if possible attach a reproduction step. If you have any questions, feel free to write to the D mailinglist or ask in IRC.

Pull requests are highly appreciated!

## Join the dfuse community
* Website: https://github.com/facebook/dfuse/wiki
* Website: https://github.com/dlang-community/dfuse/wiki
* Mailing list: [The D Mailinglist](http://lists.puremagic.com/cgi-bin/mailman/listinfo/digitalmars-d)
* irc: irc.freenode.net #d

Expand Down
2 changes: 1 addition & 1 deletion dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A D binding for libfuse",
"authors": ["David Soria Parra"],
"copyright": "Copyright (c) 2014, Facebook, Inc.",
"homepage": "http://github.com/facebook/dfuse",
"homepage": "http://github.com/dlang-community/dfuse",
"license": "BSL-1.0",
"dependencies": {},
"configurations": [{
Expand Down

0 comments on commit 5b6caca

Please sign in to comment.