Moved site to haml.info

This commit is contained in:
Norman Clarke 2012-05-01 10:16:49 -03:00
parent 787fb13e00
commit ca95c9a909
6 changed files with 9 additions and 9 deletions

View File

@ -1,3 +1,3 @@
Contributions are welcomed. Please see the following sites for guidelines:
http://haml-lang.com/development.html#contributing
http://haml.info/development.html#contributing

View File

@ -31,7 +31,7 @@ and both Haml and Sass will be installed.
Views with the `.html.haml` extension will automatically use Haml.
To use Haml programatically,
check out the [YARD documentation](http://haml-lang.com/docs/yardoc/).
check out the [YARD documentation](http://haml.info/docs/yardoc/).
## Formatting
@ -98,7 +98,7 @@ like `if` and `while`:
= "Happy new " + "year!"
Haml provides far more tools than those presented here.
Check out the [reference documentation](http://beta.haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html)
Check out the [reference documentation](http://haml.info/docs/yardoc/file.HAML_REFERENCE.html)
for full details.
### Indentation

View File

@ -151,7 +151,7 @@ For other plugins, a little searching will probably turn up a way to fix them as
## You still haven't answered my question!
Sorry! Try looking at the [Haml](http://haml-lang.com/docs/yardoc/HAML_REFERENCE.md.html) reference,
Sorry! Try looking at the [Haml](http://haml.info/docs/yardoc/HAML_REFERENCE.md.html) reference,
If you can't find an answer there,
feel free to ask in `#haml` on irc.freenode.net
or send an email to the [mailing list](http://groups.google.com/group/haml?hl=en).
or send an email to the [mailing list](http://groups.google.com/group/haml).

View File

@ -963,7 +963,7 @@ Haml 2.2 introduces a new syntax for attributes
based on the HTML syntax.
For example:
%a(href="http://haml-lang.com" title="Haml's so cool!")
%a(href="http://haml.info" title="Haml's so cool!")
%img(src="/images/haml.png" alt="Haml")
There are two main reasons for this.

View File

@ -28,7 +28,7 @@ HAML_GEMSPEC = Gem::Specification.new do |spec|
spec.executables = ['haml', 'html2haml']
spec.files = Dir['rails/init.rb', 'lib/**/*', 'bin/*', 'test/**/*',
'extra/**/*', 'vendor/sass/**/*', 'Rakefile', 'init.rb', '.yardopts'] + readmes
spec.homepage = 'http://haml-lang.com/'
spec.homepage = 'http://haml.info/'
spec.has_rdoc = false
spec.test_files = Dir['test/**/*_test.rb']
end

View File

@ -188,11 +188,11 @@ MESSAGE
def test_dynamic_attributes_with_no_content
assert_equal(<<HTML, render(<<HAML))
<p>
<a href='http://haml-lang.com'></a>
<a href='http://haml.info'></a>
</p>
HTML
%p
%a{:href => "http://" + "haml-lang.com"}
%a{:href => "http://" + "haml.info"}
HAML
end