473,830 Members | 2,067 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

]ANN[ Vellum 0.16: Lots Of Documentation and Watching

Hi Everyone,

Just putting out an announcement that I've released a new version of
Vellum numbered 0.16. This version should be ready for people to use
as not much of the internal structure has changed in a great many
commits and it contains all the latest bug fixes.

It also has the beginning of an extensive PDF document describing how
to use it. This is still an in-progress work, so it has grammar
mistakes and spelling errors, but it does show off some nice
documentation wizardy I'm experimenting with in LaTeX.

Finally there's a new "watch" feature which is very handy described
further down. It simply watches a file and reruns your targets when
the file changes.
GETTING IT

Honestly, the easiest way is just:

sudo easy_install zapps vellum

If you want to build the book yourself and have all of TeX Live
installed then you'd also need:

sudo easy_install pygments idiopidae

You can also hit the http://launchpad.net/vellum/ page to grab source
tarballs and other goodies.
THE BOOK OF VELLUM

You can grab the most recent draft of the book at:

http://zedshaw.com/projects/vellum/manual-final.pdf

Any corrections or comments on how it is written are more than
welcome. Suggestions for improving the TeX are also helpful since I'm
not a TeX expert yet.

The software I'm using to build that book is fully available to anyone
looking to document their projects. You can grab Idiopidae, Pygments,
and TeX from the interwebs. You can then grab the whole source and all
the LaTeX goodness from my Bazaar repository:

bzr pull http://zedshaw.com/repository/vellum/

Look in the doc/ directory for all the fun. You'll notice that
the .tex files have *no* code in them, and that it's all imported by
Idiopidae. Look at the doc/book.vel file to see how it's all merged
and massaged together, and you can reuse this book.vel file to start
your own books.
CRAZY NICE WATCH FEATURE

I added a feature to Vellum that is one of those "duh" features. You
can tell Vellum to watch a file, and if it changes Vellum will rerun
some targets. When I work on the manual.tex file, I do this:

vellum -w doc/manual.tex book.draft book.view

It just keeps looping, and if you hit CTRL-C you can force a build with
ENTER or quit with CTRL-C. Then I use the evince PDF viewer under
linux, which has similar Vim key bindings and reloads the PDF when it
changes.

The net effect of this is, whenever I change my manual.tex file, Vellum
runs my build for the manual and evince redisplays it for me to see.

You could use this simple feature to also continually run unit tests
whenever a file changes that you are working on.

GPLv3?

How do people feel about Vellum's GPLv3 status? It actually doesn't
impact anyone unless you embed Vellum into a project/product or you
create commands (which you should give back anyway). Even then if you
never release your build to your users then you don't need to release
the commands.

However, I'm curious to get other people's thoughts.

Thanks a bunch folks.

--
Zed A. Shaw
- Hate: http://savingtheinternetwithhate.com/
- Good: http://www.zedshaw.com/
- Evil: http://yearofevil.com/
Jun 27 '08
14 1162
On Apr 29, 3:51 am, "Zed A. Shaw" <zeds...@zedsha w.comwrote:
GPLv3?

How do people feel about Vellum's GPLv3 status?
It's going to scare away some folks.

Using LGPL will almost certainly scare away fewer. People who don't
like GPL are usually concerned about its viral aspects moreso than the
requirement to contribute back released changes.

Carl Banks
Jun 27 '08 #11
On May 5, 3:26*pm, vivai...@gmail. com (Ville M. Vainio) wrote:
"Zed A. Shaw" <zeds...@zedsha w.comwrites:
GPLv3?
How do people feel about Vellum's GPLv3 status? *It actually doesn't
impact anyone unless you embed Vellum into a project/product or you

Yeah, but it effectively prevents people from embedding it into their
apps that wish to remain BSD/MIT clean.
That's not a good argument. "GPL has the problem that if people don't
want to use GPL, then they can't use the GPL'd code."

GPL can mix with other free software licenses, so people who write
BSD code and do not wish to remain BSD clean are free to use GPL'd
code. That's the important point.
>
It's not likely that some evil corporation is going to hijack Vellum
source code as a basis of their next evil app (which is basically what
GPL is used to prevent) any time soon, so I don't really see a
particular reason for such a developer-oriented tool to be released
under GPL.
Viral licenses only serve that purpose ("protecting from evil
corporations"). If he licensed Vellum with GPL in the first place,
he's worried about that.
>
Basically, avoiding GPL maximizes the brainshare that a small-ish tool
True, but you may never ever see the brilliant result of that
brainshare work. Thus, for the author, your sentence is false.
is going to attract, and many (including myself, FWIW) view GPL as a
How many ?
big turn-off when I consider spending some time to familiarize myself
with a tool, or recommending it to someone else.
Jun 27 '08 #12
vi******@gmail. com (Ville M. Vainio) writes:
if the idea is to maximize the popularity, GPL is a worse bet.
That is not a valid inference. Look at the popularity of Linux vs
BSD, for example.
Jun 27 '08 #13
"Zed A. Shaw" <ze*****@zedsha w.comwrites:
How do people feel about Vellum's GPLv3 status?
I'm certainly in favor of it, though I didn't notice this question
until it spawned its own thread, and I'm not currently a Vellum
user or developer, so maybe my view shouldn't count for much.
Jun 27 '08 #14
On May 6, 11:27 pm, hdante <hda...@gmail.c omwrote:
GPL can mix with other free software licenses, so people who write
BSD code and do not wish to remain BSD clean are free to use GPL'd
code. That's the important point.
No, it can't. It can only mix through aggregation, i.e. you can ship a
GPL'd "plugin" with BSD code as long as you don't import the plugin
directly.

Here's a real life example from ipython:

- Core IPython is BSD clean, and we intend to leave it that way
- If we imported a gpl'd module in some core ipython component, the
core component would be gpl (or something equally restrictive) as
well, through viral nature of the license
- Now, if you want a BSD-clean version of ipython (say, to embed it in
a commercial program - with which I have absolutely *no* problem, and
can only see good things coming from it), you would have to gleam out
all the uses of that module from the source code. Not very fun, esp.
if it's something important
- There is a GPL'd module in "extensions " folder of IPython, ipy_bzr
(that is because of bzrlib). It's never imported anywhere in ipython
source code, but the user can import it in ipy_user_conf.p y. This
"contaminat es" the config file and subsequently ipython (because it's
imported into python interpreter ipython is running on), but luckily
the user can opt out from importing it if he wishes to remain BSD
clean. Or he can delete the file altogether if he wishes.

Without GPL, none of this hair-splitting is necessary.

I guess I could have gone the Carl Banks route and just say "It scares
away some people". Consider my replies here an elaborate way of saying
the very same thing.
Jun 27 '08 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
6525
by: Good Man | last post by:
Hi I'm building a 'job posting' site of sorts. When a job is available in a particular state, I want the system to send an email to everyone who is 'watching' that state. I know how to do this, but I need to figure out a way to 'send the emails in the background' - ie: if an administrator adds a job to Wyoming, I don't want them to have to wait for the php script to finish selecting and e-
4
3871
by: Travis Stewart | last post by:
Hi, I am not very familiar with C++ so the problems I am having might be simple and I just cannot see them or I am totally unaware of why something would be incorrect. Anyway, I'm using the ANN approximate nearest neighbour libraries written by David Mount and Sunil Arya. In the ANN.h file there is a comment describing how the data types used to represent the coordinates and distances between points can be modified by the user. For my...
9
1590
by: Aidan | last post by:
I rely heavily on MSDN for documentation when it comes to HTML/DHTML/JavaScript/CSS but as a result I often have problems getting my stuff to work in Netscape/Mozilla/Firefox. I like the MSDN online documentation (http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/re ference/objects.asp) because it has complete lists of DHTML objects, properties, methods, collections and event and for each element you can easily view...
6
1402
by: Chad Z. Hower aka Kudzu | last post by:
I debated over whether or not to post this on the .ann group or not. Its not an announcement as I am really looking for feedback only on the asp.net relative portions. This does of course require the user visit web pages about a product for ASP.net. We have recently released an ASP.net related product. I say released - but it has not been launched yet (Thats what Cebit is for!). We are in the stages now of preparing whitepapers,...
1
1323
by: killet | last post by:
Hi, here is an information for the people who must develop programs with geodetic background and who asked me for a Englisch documentation of the geodetic functions included in GeoDLL. The DLL is present now with a complete English and German documentation! In the Dynamic Link Library are geodetic functions like coordinate transformation, reference systems, meridian strip changes, user defined coordinate and reference systems,...
0
1667
by: YellowFin Announcements | last post by:
Security solutions provider EXTOL MSC Berhad has developed a neural network predictive analysis engine and is now working with Australian business intelligence company Yellowfin to develop a front end that is integrated with Yellowfin's reporting, that can be delivered to clients. Under the tie up, Yellowfin will make the new engine called "Artificial Neural Networks" (ANN) available with its business intelligence solution for local and...
0
1076
by: Fuzzyman | last post by:
Mock 0.4.0 has just been released, the first release in about ten months (but worth the wait). Mock is a simple library for testing: specifically for mocking, stubbing and patching. * Mock Homepage & Documentation http://www.voidspace.org.uk/python/mock.html * mock.py (module only) <http://www.voidspace.org.uk/downloads/mock.py * mock-0.4.0.zip (module, tests and documentation) <http:// www.voidspace.org.uk/downloads/mock-0.4.0.zip
0
994
by: Paul Hildebrandt | last post by:
Pythoscope, the Python unit test generator, is growing and maturing. Over the last three months we've made pretty incredible progress. We've had a full time developer and part time project manager. Where we are: Technical: * Static analysis of code. With this we can generate and maintain unit tests stubs. Just with this feature it's very usable and valuable. * Dynamic analysis of code. With user provided code entry points we run the...
0
1122
by: wesley chun | last post by:
*** FINAL REMINDER also, the course begins on monday immediately following the *free* CodeCamp conference http://siliconvalley-codecamp.com (click Program => Sessions to see all the talks)... 5 straight days of learning in the San Francisco Bay Area!! *** ---------- Forwarded message ---------- From: wesley chun <wescpy@gmail.com>
0
9780
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9641
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10476
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10520
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10196
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9310
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6940
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
3956
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3070
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.