mozillahispano is sharing code with you

Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.

Don't show this again

mozillahispano / jetpack-packages (fork of peregrino / jetpack-packages)

Módulos en jetpack

Clone this repository (size: 2.0 MB): HTTPS / SSH
hg clone https://bitbucket.org/mozillahispano/jetpack-packages
hg clone ssh://hg@bitbucket.org/mozillahispano/jetpack-packages

Searching for commits

Mercurial supports a functional language for selecting a set of revisions.

The language supports a number of predicates which are joined by infix operators. Parenthesis can be used for grouping.

Identifiers such as branch names must be quoted with single or double quotes if they contain characters outside of [._a-zA-Z0-9\x80-\xff] or if they match one of the predefined predicates.

Prefix operators

not x
Changesets not in x. Short form is ! x.

Infix operators

x::y

A DAG range, meaning all changesets that are descendants of x and ancestors of y, including x and y themselves. If the first endpoint is left out, this is equivalent to ancestors(y), if the second is left out it is equivalent to descendants(x).

An alternative syntax is x..y.

x:y
All changesets with revision numbers between x and y, both inclusive. Either endpoint can be left out, they default to 0 and tip.
x and y
The intersection of changesets in x and y. Short form is x & y.
x or y
The union of changesets in x and y. There are two alternative short forms: x | y and x + y.
x - y
Changesets in x but not in y.

Predicates

all()
All changesets, the same as 0:tip.
ancestor(single, single)
Greatest common ancestor of the two changesets.
ancestors(set)
Changesets that are ancestors of a changeset in set.
author(string)
Alias for user(string).
bookmark([name])
The named bookmark or all bookmarks.
branch(set)
All changesets belonging to the branches of changesets in set.
children(set)
Child changesets of changesets in set.
closed()
Changeset is closed.
date(interval)
Changesets within the interval, see hg help dates.
descendants(set)
Changesets which are descendants of changesets in set.
file(pattern)
Changesets affecting files matched by pattern.
follow()
An alias for ::. (ancestors of the working copy's first parent).
grep(regex)
Like keyword(string) but accepts a regex. Use grep(r'...') to ensure special escape characters are handled correctly.
head()
Changeset is a named branch head.
heads(set)
Members of set with no children in set.
id(string)
Revision non-ambiguously specified by the given hex string prefix.
keyword(string)
Search commit message, user name, and names of changed files for string.
limit(set, n)
First n members of set.
max(set)
Changeset with highest revision number in set.
merge()
Changeset is a merge changeset.
min(set)
Changeset with lowest revision number in set.
p1([set])
First parent of changesets in set, or the working directory.
p2([set])
Second parent of changesets in set, or the working directory.
parents([set])
The set of all parents for all changesets in set, or the working directory.
present(set)
An empty set, if any revision in set isn't found; otherwise, all revisions in set.
rev(number)
Revision with the given numeric identifier.
roots(set)
Changesets with no parent changeset in set.
tag(name)
The specified tag by name, or all tagged revisions if no name is given.
user(string)
User name is string.

Commits 1–30 of 39

Author Revision Comments Message Labels Date
peregrino 77d117f5d488 Fixing some descriptions.
peregrino 8fb679356e77 Removed packages that weren't needed by tabs-to-epub
peregrino b9e6415ae45d Rised version number, the current version deserves a 0.2
peregrino e3bd6e893197 Changes to the tabs-to-epub jetpack:
peregrino f0af450b57df Each image is downloaded just one time.
peregrino bffc6238fbc1 Compatibility upgrade for firefox 4.0b3 and jetpack-sdk-0.6
peregrino f0e334d38f16 New package "zip-reader". It lets you read zip files.
peregrino f1fb04b010b9 Added a new package "fix-epubs" that is an application I made to fix some broken epubs I got
peregrino a604d422a6af added README.md
peregrino 345ef291ca7b small changes to the umbrella package.json
peregrino e1d1342c627a removed font styles from the css, so that the kobo could resize fonts on the fly
peregrino 391f8f1dcb36 Added possibility to suggest a filename for the filepicker
peregrino c247b414ca5a removed misplaced documentation in zip-writer
peregrino 9ece62b03f7a moved removal of   entities before parsing
peregrino ef71c663c573 more file moving
peregrino 7fc52e291597 Adding new project, Clarin-to-EPUB
peregrino df28d03b0732 moving files arround
pergrino b2955d317523 Minor file moves and issue fixings
pergrino 6fb3d0db8827 more file cleaning
pergrino d8e821eb6cd5 more file cleaning
peregrino e2b57e7cef4e Reorganized everything into redistributable modules\!
peregrino e18cb2918442 removing unnecesary files
peregrino 635ad7e44eaa Now the title has a date to differentiate each file. Soon there will be an option to choose the title! Fixed issue with mimetype of images, so they were not being displayed on the Kobo
peregrino 28c0a914f297 Minor bug with images, now it's OK. At least what I tested.
peregrino 4f70b04c4bd1 Fixed issue with images, now they can be displayed in the kobo reader
peregrino f88b7efbd345 Added the file-picker module that I missed
peregrino 3b9f3a13504e Added Images support. For some reason the kobo skips the rest of the chapter after the first image, and firefox complains when the chapter.xhtml is opened, so there must be some issue with that.
peregrino 989baca7c3da Now it moves the file to the desired destination, and adds the '.epub' extension if it's not added by the user when choosing the destination file.
peregrino c8fb062546d4 fixed some readability issues, moved from invasive widget UI to a context menu entry
peregrino d8906b1e2037 Now is saving tabs pretty decently. Chapters have their names on the TOC, but there are still some interpretation errors that have to be polished.
  1. 1
  2. 2
  3. »