| Commit message (Expand) | Author | Age |
* | openid: Syntax tweak to the javascript code to make it work with MSIE 7 (and ... | Joey Hess | 2010-08-17 |
* | avoid insane use of javascript "array" | Joey Hess | 2010-05-27 |
* | hide local signin when nothing is selected | Joey Hess | 2010-05-10 |
* | use labels | Joey Hess | 2010-05-08 |
* | moved non-openid signin form into same page as openid selector; show/hide as ... | Joey Hess | 2010-05-08 |
* | Revert "add gmail button"•••This reverts commit 32a79523bbb4051a9a528a148a6db82e9fdd20d6.
Buggy and I need sleep.
| Joey Hess | 2010-05-08 |
* | add gmail button•••It uses the google profile openid url, which results in a nicer openid
than the o8/id url.
| Joey Hess | 2010-05-08 |
* | avoid setting cookie for promptless buttons•••I think it is clearer to not have such a button appear pre-selected
when entering the signin page, because that may suggest to the user
they don't need to click on it, and yet they do.
| Joey Hess | 2010-05-08 |
* | improve selector layout | Joey Hess | 2010-05-08 |
* | gardening openid provider list•••- fix url to flickr profile
- remove blogger; google property and uses their openid system;
wants to sign user up for a blogger blog
- remove technorati, which dropped openid provider support
- AOL seems to call it a username, not a screenname
| Joey Hess | 2010-05-08 |
* | avoid scaling favicons•••chromium's rather impressive jaggy-free scaling spoiled me, but in
iceweasel, scaled favicons look crap
| Joey Hess | 2010-05-07 |
* | adapt to ikiwiki•••Upstream ships a collection of icons, but the licences of them are very
unclear, since most seem to be taken from the various openid provider
websites. That can't be included in ikiwiki. So, instead hotlink to
favicons of sites, and for large display, include the site name.
Removed vidoop.com, which is gone.
If an url is passed to init as the second parameter, add a "Local Login"
provider, which just links to do=signin.
| Joey Hess | 2010-05-07 |
* | modify labels to input box for consistency | Joey Hess | 2010-05-07 |
* | use ikiwiki's replacement openid logo in input box | Joey Hess | 2010-05-07 |
* | modify openid selector to not default to http:// for openid•••ikiwiki doesn't care if the http:// is there, and it seems cleaner and less
annoying this way
| Joey Hess | 2010-05-07 |
* | pretty openid login•••* openid: Incorporated a fancy openid-selector signin form.
(http://code.google.com/p/openid-selector/)
* openid: Use "openid_identifier" as the form field, as required
by OpenID Authentication v2.0 spec.
| Joey Hess | 2010-05-07 |
* | add minified jquery.js from openid-selector svn | Joey Hess | 2010-05-07 |
* | patch hidden field setting code•••Fixes http://code.google.com/p/openid-selector/issues/detail?id=11#c3
| Joey Hess | 2010-05-07 |
* | use me.yahoo.com•••Fixes http://code.google.com/p/openid-selector/issues/detail?id=10
| Joey Hess | 2010-05-07 |
* | r21 from http://code.google.com/p/openid-selector/source/checkout | Joey Hess | 2010-05-07 |
* | Moved javascript files under the ikiwiki/ directory, to avoid cluttering the ... | Joey Hess | 2010-04-24 |
* | fix file, should be symlink | Joey Hess | 2010-04-16 |
* | Improve javascript onload handling.•••I noticed the onload hook running twice sometimes when using chromium.
Change from using arguments.callee.done to a onload_done variable fixed it.
I guess that the callee differed in chromium.
Probably the cause of the problem is that chrome supports both
window.onload and document.addEventListener.
| Joey Hess | 2009-12-12 |
* | add pagespec/sorting to underlay | Joey Hess | 2009-10-09 |
* | Remove deprecated ikiwiki/blog and ikiwiki/preprocessordirective pages from t... | Joey Hess | 2009-08-16 |
* | Merge branch 'master' into po•••Conflicts:
debian/changelog
| Joey Hess | 2009-05-19 |
|\ |
|
| * | relativedate: Deal with clock skew.•••If the server has a clock running a bit ahead of the web browsing client,
relativedate could cause somewhat confusing displays like "3 seconds from now"
for just posted things.
As a hack, avoid displaying times in the future if they're less than a
small slip forward. I chose 30 minutes because both client and server could
be wrong in different directions, while it's still close enough that "just
now" is not horribly wrong.
| Joey Hess | 2009-04-23 |
* | | Merge commit 'upstream/master' into prv/po | intrigeri | 2009-01-01 |
|\| |
|
| * | remove top-level directive page from basewiki | Joey Hess | 2008-12-24 |
* | | added symlink to pagespec/po in basewiki to fix the build•••else basewiki_brokenlinks.t fails.
Signed-off-by: intrigeri <intrigeri@boum.org>
| intrigeri | 2008-11-07 |
|/ |
|
* | use relativedate as the css class for dates that should display relative | Joey Hess | 2008-10-20 |
* | partial support for calling onload once the DOM is ready•••This adds support for gecko and newer versions of opera
to call onload once the DOM is ready, rather than waiting for
all images in the page to load. Makes relativedate behave
somewhat better.
Dealing with this means jumping into the browser
incompatability waters that I prefer to avoid.
Full solutions for most of the major browsers are listed here:
http://dean.edwards.name/weblog/2006/06/again/
However, no *license* is listed there, so I can't use that code. Also, the more
involved code appears to have various issues (such as the inline IE code not
working via https). So I only added the simple call to a hook needed
for gecko/opera.
It seems that the only standards-compliant way to do this is using the
`defer` attribute to a `script` tag, using an external script that will be
loaded once the DOM is ready, and can call onload. However, that has
browser compatability issues of its own, since not all browsers honor
`defer`.
Perhaps I should really just be using one of the javascript frameworks, that
include code to solve this for the major browsers. But something about them
still puts me off, and this issue is minor enough that I'm willing to live
with incomplete support for now.
| Joey Hess | 2008-10-19 |
* | allow ikiwiki.js to be loaded twice w/o clobbering previous hooks•••Clearly it's suboptimal for it to be loaded twice, but this is a quick fix
at least.
| Joey Hess | 2008-10-18 |
* | relativedate: New javascript-alicious plugin that makes all dates display rel... | Joey Hess | 2008-10-17 |
* | Add an underlay for javascript, and add ikiwiki.js containing some utility code.•••* Add an underlay for javascript, and add ikiwiki.js containing some utility
code.
* toggle: Stop embedding the full toggle code on each page using it, and
move it to toggle.js in the javascript underlay.
| Joey Hess | 2008-10-17 |
* | replace subdir link with link to the one page from it we want | Joey Hess | 2008-09-12 |
* | Removed old redirecton pages from basewiki (helponformatting, markdown, openi... | Joey Hess | 2008-09-12 |
* | Removed the obsolete blog page from the basewiki. ikiwiki/blog still remains,... | Joey Hess | 2008-09-11 |
* | move inline docs to ikiwiki/directive/inline•••ikiwiki/blog will be going away
| Joey Hess | 2008-09-11 |
* | Move the directive documentation into its own underlay, separate from basewi... | Joey Hess | 2008-09-11 |
* | add robots directive to all directive pages•••Since they'll be in an underlay, robots shouldn't index them, as with other
underlay pages.
| Joey Hess | 2008-09-11 |
* | misc minor changes | Joey Hess | 2008-09-11 |
* | squash redundant text•••A lot of text was copies from templates to directive/template.
Remove most of it and have each page link to the other.
| Joey Hess | 2008-09-11 |
* | reword after reorg•••There was a duplicated paragraph, an example on the wrong page, and some
rewording needed after will's reorg.
| Joey Hess | 2008-09-11 |
* | removed demos that accompny examples•••This is sorta unfortunate, but I don't want turning the plugin on the cause
php to be forked unnecessarily. And moving them back to the plugin page
doesn't make sense in this case.
| Joey Hess | 2008-09-11 |
* | move demo back to plugin page | Joey Hess | 2008-09-11 |
* | move back demo and add example | Joey Hess | 2008-09-11 |
* | move demo back to plugin and add example | Joey Hess | 2008-09-11 |
* | move example | Joey Hess | 2008-09-11 |
* | move example back | Joey Hess | 2008-09-11 |