Looking at the source view(https://github.com/democrats/voter-registration/blob/master/...) it doesn't seems there is some extra markup, unless I am missing something.
So, How can I implement the same in my rails app?
11–20 of 33 posts
Looking at the source view(https://github.com/democrats/voter-registration/blob/master/...) it doesn't seems there is some extra markup, unless I am missing something.
So, How can I implement the same in my rails app?
The first part of the software license looks to be BSD/MIT-like with the to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,... sentence, but then there's this paragraph: This permission does not include: (a) any use of the Software other than for its intended purpose; or (b) any use of t…
I imagine that that's CYA; one thing both party organizations have in common: they are saturated with lawyers.
This application is very, very simple; it's a practically the starting skeleton of a modern Rails/Devise application. One useful reason to bookmark it: it's a pretty good how-to for "any web application whose purpose is to spit out PDF files that need to follow a specific format". There are a LOT of business processes that work like that.
As others have pointed out, the (not really open source) license doesn't allow any uses for other purposes.
I like how the registration form shows the form validation errors inline: http://i.imgur.com/U5QL1.png Looking at the source view( https://github.com/democrats/voter-registration/blob/master/... ) it doesn't seems there is some extra markup, unless I am missing something. So, How can I implement the same in my rails app?
This application is very, very simple; it's a practically the starting skeleton of a modern Rails/Devise application. One useful reason to bookmark it: it's a pretty good how-to for "any web application whose purpose is to spit out PDF files that need to follow a specific format". There are a LOT of business processes that work like that.
> One useful reason to bookmark it: it's a pretty good how-to for "any web application whose purpose is to spit out PDF files that need to follow a specific format". As others have pointed out, the (not really open source) license doesn't allow any uses for other purposes.
The first part of the software license looks to be BSD/MIT-like with the to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,... sentence, but then there's this paragraph: This permission does not include: (a) any use of the Software other than for its intended purpose; or (b) any use of t…
In particular this means that this is anything but open source (at least if you go by the OSI definition, which I do).
This application is very, very simple; it's a practically the starting skeleton of a modern Rails/Devise application. One useful reason to bookmark it: it's a pretty good how-to for "any web application whose purpose is to spit out PDF files that need to follow a specific format". There are a LOT of business processes that work like that.
> One useful reason to bookmark it: it's a pretty good how-to for "any web application whose purpose is to spit out PDF files that need to follow a specific format". As others have pointed out, the (not really open source) license doesn't allow any uses for other purposes.
This application is very, very simple; it's a practically the starting skeleton of a modern Rails/Devise application. One useful reason to bookmark it: it's a pretty good how-to for "any web application whose purpose is to spit out PDF files that need to follow a specific format". There are a LOT of business processes that work like that.
FWIW, I've found that "generate HTML and feed it through wkhtmltopdf" is a surprisingly effective way of doing this.
This application is very, very simple; it's a practically the starting skeleton of a modern Rails/Devise application. One useful reason to bookmark it: it's a pretty good how-to for "any web application whose purpose is to spit out PDF files that need to follow a specific format". There are a LOT of business processes that work like that.
web application whose purpose is to spit out PDF files that need to follow a specific format FWIW, I've found that "generate HTML and feed it through wkhtmltopdf" is a surprisingly effective way of doing this.
That said: I used to do the same thing, and it works pretty well.
Earlier quoted context omitted.
web application whose purpose is to spit out PDF files that need to follow a specific format FWIW, I've found that "generate HTML and feed it through wkhtmltopdf" is a surprisingly effective way of doing this.
You lose control of pagination when you do this, but, more generally, we're talking about business processes where things need to look exactly the way they usually do. That said: I used to do the same thing, and it works pretty well.