You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Macro reform](https://github.com/rust-lang/rfcs/pull/453): Prepares macros for 1.0 stabilization. Renames `macro_rules!` to `macro!`, and introduces more robust support for module importing and exporting.
140
-
*[Change integer fallback RFC to suggest `i32` instead of `int` as the fallback](https://github.com/rust-lang/rfcs/pull/452): Changes the fallback for performance and portability.
143
+
*[Change integer fallback RFC to suggest `i32` instead of `int` as the fallback](https://github.com/rust-lang/rfcs/pull/452): Changes the fallback for performance and portability.
141
144
*[Un-feature-gate if let and tuple indexing](https://github.com/rust-lang/rfcs/pull/450): The features are well-behaved and used by many projects; ship 'em!
142
145
*[Prohibit unused type parameters in impls](https://github.com/rust-lang/rfcs/pull/453): Require that every impl type parameter appears textually within the input type parameters of the trait reference or the impl self type.
143
146
*[ES6-style unicode string escaping](https://github.com/rust-lang/rfcs/pull/446): Remove `\u203D` and `\U0001F4A9` unicode string escapes, and add ECMAScript 6-style `\u{1F4A9}` escapes instead. Strong positive feedback, some concern with how it interacts with format strings.
144
-
*[extension trait conventions](https://github.com/rust-lang/rfcs/pull/445): Establishes a definition and naming convention for extension traits: traits which aren't intended for generic programing, but instead extending existing types. If extending a `Foo`, use `FooExt`. If Extending a `Foo` when it impls another trait like `Add`, use `FooAddExt`.
147
+
*[extension trait conventions](https://github.com/rust-lang/rfcs/pull/445): Establishes a definition and naming convention for extension traits: traits which aren't intended for generic programing, but instead extending existing types. If extending a `Foo`, use `FooExt`. If Extending a `Foo` when it impls another trait like `Add`, use `FooAddExt`.
145
148
*[cmp and ops reform](https://github.com/rust-lang/rfcs/pull/439): Refactors `Cmp` and the operator overloading traits. Generally positive feedback. Highlights include:
146
149
* Make basic unary and binary operators work by value and use associated types.
147
150
* Generalize comparison operators to work across different types; drop Equiv.
148
151
* Refactor slice notation in favor of range notation so that special traits are no longer needed.
149
152
* Add IndexSet to better support maps.
150
153
* Clarify ownership semantics throughout.
151
154
*[Change precedence of `+` in type grammar](https://github.com/rust-lang/rfcs/pull/438): Update type grammar to make `+` have lower precedence, consistent with the expression grammar, resolving a grammatical ambiguity.
152
-
*[Relocate and improve c_str](https://github.com/rust-lang/rfcs/pull/435):
155
+
*[Relocate and improve c_str](https://github.com/rust-lang/rfcs/pull/435):
153
156
* Move the c_str module out of std to rid the latter of type dependencies on libc.
154
157
* Split the current CString into a low-level type CStrBuf and a length-aware CString to make computation costs explicit.
155
158
* Provide custom destructors and purpose-specific, mnemonically named constructors.
(rather than temporary storage on the stack and then copying the
206
209
datum from the stack into the backing storage).
207
210
*[Forbid -(unsigned integer)](http://discuss.rust-lang.org/t/forbid-unsigned-integer/752): the eternal struggle continues. It's super handy when you want it, but also a common error to make.
208
-
*[Moving all built-in macros to plugins](http://discuss.rust-lang.org/t/moving-all-built-in-macros-to-plugins/737): Another proposal to handle some of the issues with macros for 1.0. May make it easier to bootstrap changes to the compiler.
211
+
*[Moving all built-in macros to plugins](http://discuss.rust-lang.org/t/moving-all-built-in-macros-to-plugins/737): Another proposal to handle some of the issues with macros for 1.0. May make it easier to bootstrap changes to the compiler.
209
212
*[Lifetime Notation](http://discuss.rust-lang.org/t/lifetime-notation/751): `&'a` -> `a&`. Some discussion of tradeoffs and details.
210
213
*[Poll: `Foo::new()` vs `Foo()` as the default constructor](http://discuss.rust-lang.org/t/poll-foo-new-vs-foo-as-the-default-constructor/758/29)
*[Error interoperation now available in the nightlies](https://www.reddit.com/r/rust/comments/2l98pn/error_interoperation_now_available_in_the/)
219
222
*[Trait-based Exception handling RFC postponed until after 1.0](http://www.reddit.com/r/rust/comments/2l8x2a/traitbased_exception_handling_rfc_postponed_till/)
220
223
*[Cargo now supports build-scripts!](http://www.reddit.com/r/rust/comments/2lgyne/cargo_now_support_build_scripts_xpost_rrust/)
221
-
*[What libraries would you like to see implemented in Rust?](https://www.reddit.com/r/rust/comments/2lmt99/what_libraries_would_you_like_to_see_implemented/)
224
+
*[What libraries would you like to see implemented in Rust?](https://www.reddit.com/r/rust/comments/2lmt99/what_libraries_would_you_like_to_see_implemented/)
222
225
*[How good do you think the market for Rust developers will be 5 years from now, and in what area of programming?](http://www.reddit.com/r/rust/comments/2l3l07/rust_is_undoubtedly_one_of_the_upandcoming_big/)
223
226
*[I think Rust and I were made for each other](http://www.reddit.com/r/rust/comments/2ljrp2/i_think_rust_and_i_were_meant_for_each_other/)
224
227
*[How does the Rust community feel about FFI?](https://www.reddit.com/r/rust/comments/2lmkjw/how_does_the_rust_community_feel_about_ffi/)
*[this-week-in-rust](https://github.com/cmr/this-week-in-rust): This Week in Rust's content is now publicly hosted in a Github repo! If you find any errors, just submit a PR to the relevant markdown file in `/content`! If you'd like to help out, please contact cmr, brson, or Gankro on Github/Reddit/IRC.
234
237
*[rustaceans.org](http://rustaceans.org/): *This website is for finding Rustaceans. Wondering who is behind that GitHub username or IRC nick? Here is where to find out.*
235
238
*[rust-modifier](https://github.com/reem/rust-modifier): *Convenient chaining APIs for free*
236
-
*[dockerfiles](https://github.com/schickling/dockerfiles): *Collection of lightweight and ready-to-use docker images*
239
+
*[dockerfiles](https://github.com/schickling/dockerfiles): *Collection of lightweight and ready-to-use docker images*
237
240
*[Window Tiling For The Win](https://github.com/Kintaro/wtftw): *A tiling window manager written in Rust*
238
241
*[cxx2rs](https://github.com/manuels/cxx2rs): *A rust-binding generator for C/C++ files*
239
242
*[sorting-rs](https://github.com/wackywendell/sorting-rs): *This is a set of sorting algorithms, written in Rust.*
The license requires that you give credit to me, Talha Mansoor, as the author of the Elegant theme on every site that uses this theme. I have placed the attribution in the footer of every page. Do not remove it. If you need to remove or change the style of the attribution, please get in [touch with me](http://oncrashreboot.com/#about-me) first.
2
+
3
+
Along with this attribution clause, Elegant theme is licensed under The MIT License.
4
+
5
+
If you use my theme, I would love to hear from you. [Get in touch](http://oncrashreboot.com/#about-me) and let me know about it. I may link to your site too.
6
+
7
+
Please visit License section of [Elegant - a theme for Pelican](http://oncrashreboot.com/pelican-elegant) at my blog for updated licensing details.
Please visit [Elegant - a theme for Pelican](http://oncrashreboot.com/pelican-elegant) at my blog for detailed features and documentation.
2
+
3
+
Elegant offers several unique features including search, live filter, collapsible comments, Mailchimp, custom 404 page, etc. It is a minimal, and stylish theme that looks amazing across all screen resolutions and devices.
4
+
5
+
Here is an example search result
6
+
7
+

1. He [reported](https://github.com/talha131/pelican-elegant/issues/10) an issue with CSS style of links in an unordered lists.
10
+
11
+
### Oct 1, 2013
12
+
13
+
1. He [reported](https://github.com/talha131/pelican-elegant/issues/6) that it is not possible to link to a Disqus comment.
14
+
15
+
### Sep 29, 2013
16
+
17
+
1. He [reported](https://github.com/talha131/pelican-elegant/issues/5) hyperlink style compatibility issue on Chrome.
18
+
1. He [reported](https://github.com/talha131/pelican-elegant/issues/3) an issue with link style.
19
+
1. He [reported](https://github.com/talha131/pelican-elegant/issues/4) the bug that Disqus comment count is always zero.
20
+
21
+
[yuex](https://github.com/yuex)
22
+
-------------------------------
23
+
24
+
### Sep 15, 2013
25
+
26
+
1. He submitted a [patch](https://github.com/talha131/pelican-elegant/pull/2) to the project.
27
+
28
+
[Melissa](https://github.com/meli-lewis)
29
+
----------------------------------------
30
+
### Sep 3, 2013
31
+
32
+
1. She reported a [critical bug](https://github.com/talha131/pelican-elegant/issues/1).
33
+
34
+
[John](http://twitter.com/BostonEnginerd)
35
+
-----------------------------------------
36
+
37
+
### Sep 2, 2013
38
+
39
+
1. He suggested [an improvement](https://twitter.com/BostonEnginerd/status/374555593589002241) to the [Elegant project description](http://oncrashreboot.com/elegant-a-clean-theme-for-pelican-with-search-feature).
40
+
41
+
[if1live](https://github.com/if1live)
42
+
-------------------------------------
43
+
44
+
### Aug 31, 2013
45
+
46
+
1. His [pull request](https://github.com/getpelican/pelican-plugins/pull/68) reminded me that I have forgotten to add template for Pages
47
+
1. His [commit](https://github.com/if1live/pelican-elegant/commit/3da52903e94051fa771212149a10a271adc78264#commitcomment-3988674) in the fork brought bug in the path of search.html to my notice
48
+
49
+
[Jérémie Astori](https://github.com/astorije)
50
+
---------------------------------------------
51
+
52
+
### Aug 30, 2013
53
+
54
+
1. He reported a [bug](https://botbot.me/freenode/pelican/msg/5577967/) in search form.
0 commit comments