Dino
Dino
```py @admin_blue.context_processor def view_share(): return dict(_admin='am-active') ```
原因在这里: https://github.com/ruby-china/homeland/blob/0285a3fc50643c69b0bee72fb4f74567487836da/lib/homeland/pipeline/mention_filter.rb#L19 py 的代码(非预期): ```py @admin_blue.context_processor ``` 处理的时候会生成: ```html @user1rocessor ``` user1rocessor 导致在遍历的时候无法还原回去。 而 rb 的代码(预期): ```rb @admin_blue.context_processor ``` 处理的时候会生成: ```html @user1rocessor ``` @user1rocessor 在遍历的时候就能正确还原。
有临时的解决办法,但是感觉不能从根本上解决问题( 可能要思考下怎么样改进 @ 方法。
现在论坛有邮件验证吗? 我刚刚试着注册了一个新的账号,发现没有邮件验证的流程。
``` brew install ruby rvm mount /usr/local/Cellar/ruby/3.0.0_1 rvm use ext-ruby-3.0.0-p0 ``` I am using this method to work :P I tried to compile ruby-3.0.0 manually, no error. It's strange.
Ok, I found a solution, just run: `rvm install 3.0.0 --with-gcc=clang`
@rahul-onekingslane - Do you have any log?
同样问题,我引入了 JSDOM 以及 Canvas 依旧不行,现在会报一个:TypeError: Cannot read properties of null (reading 'HALF_FLOAT_OES')
@michaelklishin Do you find any solution?
Where to add this namespaces? I am trying to call some ONVIF PTZ Interface ```rb class PTZClient attr_reader :client def initialize(endpoint, username, password) @client = Savon.client do |c| c.wsdl "https://www.onvif.org/ver20/ptz/wsdl/ptz.wsdl"...