Commit Graph

75 Commits

Author SHA1 Message Date
Sara Vieira 3ea02872c7 Merge branch 'main' of github.com:axodotdev/axohtml into aria-sort 2022-12-23 16:01:35 +00:00
ashley williams f392e6daac
Merge pull request #10 from axodotdev/fix-data
Fix data attributes && add ability to have script in HTML
2022-12-23 09:31:17 -06:00
Sara Vieira 85481c23c1 type aria sort 2022-12-22 17:38:57 +00:00
Sara Vieira a2fd84ab5e type aria orientation 2022-12-22 17:35:41 +00:00
Sara Vieira ae1462cdb8 fix data attrs, support scfript 2022-12-22 14:28:12 +00:00
Sara Vieira 3e2d9282f6 add support for aria 2022-12-19 19:27:48 +00:00
Sara Vieira 5a92c5994c revert bump 2022-12-19 16:11:56 +00:00
Sara Vieira 9d8c50f4d5 add proprety in meta tags 2022-12-19 14:04:06 +00:00
Ashley Williams 73cb76a2d4 fix(doc): update example text for rustdoc 2022-12-16 09:14:31 -06:00
Ashley Williams 3c62510e12 fix(clippy): appease 2022-12-16 07:56:49 -06:00
Ashley Williams 37c410a53c fork: remove dodrio and stdweb stuff for now 2022-12-15 17:27:58 -06:00
Ashley Williams e5f2b5c106 style: appease clippy 2022-12-15 16:40:54 -06:00
Ashley Williams ddc8bc12d0 fork: rename and reversion 2022-12-15 16:35:42 -06:00
Bodil Stokke e18d328951 Bump all the deps and appease Clippy, 2022 edition. 2022-01-27 19:38:31 +00:00
Samuel El-Borai 95764776f2 Remove use of deprecated proc_macro_hack
This fixes the error:
"unresolved macro `$crate::proc_macro_call_dodrio!`" from the file
examples/dodrio/counter/src/lib.rs.

Quoting proc_macro_hack documentation:
> Note: As of Rust 1.45 this crate is superseded by native support for
> #[proc_macro] in expression position. Only consider using this crate
> if you care about supporting compilers between 1.31 and 1.45.

Source: https://docs.rs/proc-macro-hack/latest/proc_macro_hack/index.html
2022-01-27 18:16:32 +00:00
Samuel El-Borai 9d5f32ba9b cargo clippy --fix -- --allow unused_braces
- The '--allow unused_braces' is to avoid removing the extra curly
  braces used within html! macro calls.
2022-01-27 18:16:32 +00:00
Josh Stone d95ce1a293 Use Vec to implement the Events iterators
Using `vec::IntoIter` is much simpler than a deeply nested `Chain`,
compiling faster and avoiding the deeper recursion limit reported in
[rust#71359](https://github.com/rust-lang/rust/issues/71359).
2020-04-24 16:37:26 +01:00
Mathias Svensson 0950c82294 Use `slice::iter` instead of `into_iter` to avoid future breakage
`an_array.into_iter()` currently just works because of the autoref
feature, which then calls `<[T] as IntoIterator>::into_iter`. But
in the future, arrays will implement `IntoIterator`, too. In order
to avoid problems in the future, the call is replaced by `iter()`
which is shorter and more explicit.
2019-11-29 14:30:35 +00:00
Bodil Stokke d97c8fa03c Clippy appeasement. 2019-06-28 14:45:44 +01:00
Jonathan Kingston 8c340453eb Add Send to all output types 2019-05-28 16:30:53 +02:00
Jonathan Kingston 62dd064f79 Add Send bound. Fixes #50 2019-05-28 16:30:53 +02:00
Jonathan Kingston 1588f30353 Relax attribute escaping. Fixes #26 2019-05-28 16:06:13 +02:00
Jonathan Kingston 9c81041cac Support expressions in text! macro 2019-05-28 16:04:19 +02:00
Jonathan Kingston 105156542e Adding support for the ARIA role attribute 2019-05-28 16:03:12 +02:00
Bodil Stokke 5334d783f2 Use TryFrom rather than panicking From implementations to do attribute conversion.
Now that it's landed in stable and all.
2019-04-12 20:00:33 +01:00
Bodil Stokke 91c3d9864a
Merge pull request #39 from ckampfe/add-unsafe-text
add unsafe_text
2019-04-08 15:56:11 +01:00
Matthew Nicholson 2c500dc3f4 add tests for Events iterators 2019-04-01 00:46:46 -04:00
Matthew Nicholson 6f1021b4a3 implement `IntoIterator` for `Events` 2019-04-01 00:46:46 -04:00
Matthew Nicholson d4aee284e5 add iter_mut method to events struct 2019-04-01 00:46:46 -04:00
Matthew Nicholson b1d7f80dad remove now unused `IntoEventHandler` trait 2019-04-01 00:46:46 -04:00
Matthew Nicholson 44436da495 use the standard `From` trait instead of `IntoEventHandler` 2019-04-01 00:46:46 -04:00
Matthew Nicholson 559359b2ff add an iterator over all events
This iterator returns tuples conntaining the event name and whatever the
value is.
2019-04-01 00:46:46 -04:00
Matthew Nicholson 3edc4c3fa0 use generic events struct instead of `StringEvents`
This new structure is generic over any type that implents `From`/`Into`
for the type specified.
2019-03-31 02:04:30 -04:00
Clark Kampfe 4f8ce04fae handle unsafetext match arm in stdweb 2019-03-26 22:30:14 -05:00
Clark Kampfe 7e842d9d78 add unsafe_text 2019-03-26 21:31:48 -05:00
Bodil Stokke bf3f5a4e2a Add missing attributes to video element.
Closes #32.
2019-03-16 21:39:45 +00:00
Bodil Stokke f628e63e63 Revert accidental de-Booling and add missing <input> attrs. 2019-03-16 20:59:14 +00:00
Bodil Stokke e2f6fd0c08 Add in some missing types, conversions and utility methods. 2019-03-16 20:58:51 +00:00
Bodil Stokke 813121b3a7 Dodrio support with a bespoke macro. 2019-03-16 03:18:49 +00:00
Bodil Stokke dbb4ba8738 2018 edition. 2019-03-15 23:37:20 +00:00
Bodil Stokke eb1174ae97 Stop rustc complaining about non-camel case types. 2019-01-17 12:56:41 +00:00
Bodil Stokke 77888b20e5 Alias the Uri type to String.
Closes #30.
Closes #31.
2019-01-17 12:56:22 +00:00
lunchhunter c2584878a5
Fix `data-` prefix duplication
The `data-` prefix is being duplicated, such that `data-foo="bar"` is
being rendered as `data-data-foo="bar"`.

This change removes the prefix at the `Element` level, and leaves its
addition at the `Display` level, causing it to be rendered correctly.
2018-12-04 16:23:03 -08:00
Bodil Stokke 4c49aca99f
Merge pull request #22 from bodil/generic-events
Generic event types.
2018-12-03 17:03:38 +00:00
Bodil Stokke 818c8ebdac Make it generic on event type, determined by output type.
Unfortunately, this means the macro now requires a type annotation when 
using event handlers.

Closes #6, #17.
2018-12-01 18:33:34 +00:00
Richard Dodd (dodj) d87c9f81b1
Change `nav` to contain flow content -
I'm pretty sure you should be able to do

```html
<nav>
  <ol>
    <li>Test</li>
  </ol>
</nav>
```
2018-11-29 20:10:40 +00:00
Bodil Stokke 270e3b52e1 Implement IntoIterator for all marker traits.
Further closes #12.
2018-11-29 16:37:07 +00:00
Jonathan Kingston 460681b5ec Formatting fixes 2018-11-24 16:13:58 +00:00
Jonathan Kingston b74e8e5bc1 Handle bool attributes. Fixes #13 2018-11-24 13:21:41 +00:00
David Tolnay 0e4123f927
Stable still requires lifetimes here 2018-11-18 02:51:16 -08:00