Jump to content

Christophe

Members
  • Posts

    648
  • Joined

  • Last visited

Everything posted by Christophe

  1. Hello, I've just gone to http://pierre-diagnostic.fr/, it doesn't stop loading... (Firefox 32.0 - Linux Mint) It could be because of http://pierre-diagnostic.fr:3000/browser-sync/browser-sync-client.1.5.7.js (Firebug).
  2. Christophe

    Muesli Café

    Hello diogo , I've just noticed several things, I don't know if it's on purpose. And if it's just the GNU/Linux versions. When using Firefox 32.0 and Chromium 37 (LinuxMint) - I'll also check on Windows 7 later -, each time I hover the EN (or PT) link the font changes. The same occurs with the top-left menu links. Is it also "normal" that when scrolling down the homepage, for example, the 4 menu links "merge"? It seems to be because of: .collapsed #menu li:nth-child(n+2) { margin-top: -0.97em; } When hovering the "merged" links, they become 4 separated links again. Perhaps the menu links could just become smaller when "Ajude-nos a abrir um novo espaço de pequeno-almoço no Porto. Só temos 86 dias." becomes smaller. Just an idea (but perhaps it's an artistic choice ). In Chromium, the "active" top-left menu link becomes bold, but not in Firefox. Nice pictures!
  3. Why not a (comic) book like http://mislav.uniqpath.com/poignant-guide/ or http://natecooper.co/2014/08/build-your-own-website-a-comic-guide-to-html-css-and-wordpress/ - just found this latter one yesterday - (or a manga-style book) for example ? Just an idea.
  4. I'm not the first one to reply . If it was by (S)FTP, I would have thought about the fact that some recommend to specify binary transfer for archives like .zip files in order to avoid file corruption (?). Could it have something to do with permissions? Have you tried http://www.xcloner.com? Of course, rsync and other (more or less) similar tools are convenient.
  5. Perhaps there's a better place to post this. Feel free to move it. I'm learning Python for Informatics currently. There are also some videos. I've just found this, from the same source, that could be interesting for php beginners: http://www.youtube.com/playlist?list=PLlRFEj9H3Oj5F-GFxG-rKzORVAu3jestu Starting from "PHP-Intro Chapter 3 - Overview", I suppose. http://www.php-intro.com/ I'll surely look at least at the videos .
  6. @adrian. Yes, there are thumbnail images, so it's normal . I really need to go to sleep earlier, sleep more/better and have a healthier life . @kongondo. I didn't use code tags this time because it created a horizontal scrollbar, so it seemed less readable at the moment I put it. But it's ok .
  7. It's possible it's simply because I'(ve) inserted the images in the admin before inserting the code in the template file. Edit: I've tested with a third gallery, I've created the code before inserting the images in the page via the admin, it seems to be the same, there is always a .0x100.jpg version for each image. Perhaps it's defined in /wire/ (?).
  8. Hello, Not sure I'm in the right section. I've just noticed something. In site > assets > files, there are folders apparently named after the id of the page in which the images are inserted in the admin. I'm developping a website locally this time, with version 2.5.0 now after an upgrade. It is the same for the first gallery rendered (before the upgrade) on it's own page and for the second gallery that've I've just rendered on the parent page of the page in which the images are inserted in the admin. For the first "gallery", the code is: foreach($page->children('include=hidden') as $child) { $thumb = $child->images->first()->width(320); echo "<a href='$child->external_url' target='_blank' rel='nofollow'><img src='$thumb->url' width='$thumb->width' height='$thumb->height' /></a>"; } (I've just updated this gallery code from width='320' height='200' to width='$thumb->width' height='$thumb->height') For the second gallery, it is: foreach($pages->get(1032)->images as $image) { $thumb = $image->width(90); echo "<a href='$image->url'><img src='$thumb->url' width='$thumb->width' height='$thumb->height' /></a>"; } For the first gallery, there are these versions: the original version (640x400), the .320x0.png version (320x200), in two folders a .300x212.png version (300x187 - perhaps old images with dimensions that I tested...(?)), and a .0x100.png version (160x100). For the second gallery, there are these versions: the original version (640x480), the .90x0.jpg version (90x68), and again a .0x100.jpg version (133x100). Where can I disable the creation of this .0x100.jpg version, in which file, is it "normal"? Thanks in advance !
  9. Hello, I've got a list of bookmarks of interesting desktop-based and web-based applications related to all this, but the list is not organized, I'll try to do it when I have more time. For information, and perhaps to have some ideas, there is this one (web-based) at least : https://www.odoo.com/page/download (Windows and Ubuntu installers are available). Online Demo: https://www.odoo.com/start There are, for example, Project Management, Billing and Accounting. For accounting, while configuring at the beginning, you can apparently choose the Germany accounting package and the accounting (plan) model: Configurable Account Chart Template, Deutscher Kontenplan SKR03 and Deutscher Kontenplan SKR04. I remember also at least one desktop-based application quite complete. (And there is a fork of Odoo (Ex-OpenERP): Tryton, with a desktop-based version still available.) I'll really have to organize all the bookmarks related to these subjects . In fact all my bookmarks (in the different browsers and computers I use). I often also prefer desktop-based apps when available.
  10. If we don't like too many echoes we can write this (but you already know it ): <li><a href="<?= $page->url ?>">Предложение</a></li> <li class="active"><a href="<?= $page->url ?>spros/">Спрос</a></li>
  11. I've just encountered another CKEditor "problem" in ProcessWire. For one page, I want to create 3 "internal links". So I've used the Anchor (flag) button. I want the targets to be h2 tags. The generated code for the targets is: <h2><a name="h2titlename" id="h2titlename">h2titlename</a></h2> The result is that, of course, the h2 titles take some properties from links: color and text-decoration. I know I can use something like a[id*="anchor_"] or a[name*=anchor_] to change the properties. But I don't "understand" why an <a> tag is generated instead of a span tag for example, or why the id isn't added to the h2 tag (perhaps it can't be added). Also, is name=" " still used? Thanks in advance
  12. @teppo: of course, "width" and "height" are attributes in this case . It's really time I go and eat something today... and rest a bit. And oxygenate my brain with some physical exercises. For Extra Allowed Content, I'll look at it later. Thanks. I'll give you news. EDIT: ul(classname) works (but I won't use it). I don't know what I was thinking. I had put ul(class). If I wanted to allow all classes, I guess (?) I would have to write ul[class], but that's not what I wanted.
  13. Hello, I've just noticed something in Processwire 2.5 as I am converting an old website to Processwire. I was using version 2.4 and upgraded with ProcessWireUpgrade. In Admin > Setup > Fields > Edit Field: body > Input, for Extra Allowed Content, it is written: "Example: img[alt,!src,width,height]". When in the docs, it is written: // A rule accepting <img> with a required "src" attribute and an optional // "alt" attribute plus optional "width" and "height" styles. img[alt,!src]{width,height} // The same as above, because the order of properties and their lists is irrelevant and white-spaces are ignored. img { height, width } [ !src, alt ] and: Rule format: elements [attributes]{styles}(classes) By the way, I can't get ul(class), for instance, to work for the moment. Everything is by default, except in "Details" where I have the option "Markup/HTML" enabled. I've also tried with "Unknown".
  14. Hello, What kind of editing do you need?
  15. Hello, I've just really enjoyed reading this case study ! Just for information, mailerlite is another interesting email newsletter solution ("Email Marketing Software, Services and Newsletters"). Edit: a "Forever Free Plan" and affordable "Small Business Plans" now -> www.mailerlite.com/pricing And tinyletter.com and sendy.co
  16. Hello, Would it be (technically) possible/difficult to have a Processwire native language pack automatically created based on the official git repository files, and also updated automatically or from time to time to see the changes/additions more easily? I'm often not satisfied with parts of French translations in CMSs and would prefer to have a native file(s) pack to start from. NB: I know I can always change later the parts that I would like translated differently, but it's good to have a (complete) reference in the native language in the same form as the language packs.
  17. Pootle seems interesting: pootle.translatehouse.org + translatehouse.org/products.html
  18. Hello, Very nice website ! For the slideshows (with bx slider apparently), when there is only one image there are no left and right arrows. But there is one "big dot link" under the image. Is(n't) it possible to make it disappear/have this option deactivated automatically when there is only one image?
  19. Hello, Nice Job! Wouldn't it be easier for everyone to have something like a language pack in the default language of Processwire in an official git repository (I'm just starting to learn it) that would enable to see changes and also ease translations?
  20. We would/could then use "height: auto !important;", wouldn't/couldn't we ? (I'm writing with my left hand as I can't really use my right hand for at least one month.)
  21. Has someone contacted you? Have you found someone? Have a nice week! [ Posting Guidelines: https://processwire.com/talk/topic/2320-posting-guidelines/ ]
  22. Thank you for the information. For the heading, yes, it's not really a better solution. Perhaps always having 2 lines, even if the second is blank, and reducing line-height... and putting a small border around the heading with some padding. German compound words can be very long. Have a nice weekend!
  23. Just in case... codeaware.co (codeware.co is already taken) codeawire.co (or code-a-wire.co) codewire.co hackwire.co hackawire.co (or hack-a-wire.co) hackware.co hackaware.co braincode.co (taken), braincodes.co (also taken) softcodes.co, hardcodes.co, nicecode.co/nicecodes.co [the first e could be "closed" to seem like a o *], nicehack.co/nicehacks.co *, awesomecodes.co, codeawesome.co brainycode.co, brainycodes.co, smartcode.co (taken), smartcodes.co (taken) brainywire.co ... (NB: I wanted to launch a topic on the rise of bitcoins, the rise of darkcoins, just to name these virtual currencies (, the rise of gold, and the decrease of the euro/dollar rate...), but I lost what I had written before saving it, so I "make it short" here, I don't know if I will create a topic or not...)
  24. Very nice websites. I'd love to already know how to create this kind of real-estate website (profile) with processwire in order to offer this service to real-estate agents. I just have some unclear ideas about all this, for the moment. I've just been testing, with firebug, what the homepage would look like if the h4 titles at the bottom where after the images (because of the titles that are not short), like for example putting the h4 tag around the anchor tag inside footer and the h4 text instead of Details, and adding title="Details". (I think I've seen that in html5 we can put header tags inside anchor tags, if really needed.) Or putting the h4 tag between the image and the Details button (I'm not sure if it's "semantic" or not to put the h4 tag after, if it's important). (Is the form a simple php form? I like the "?link=1643" functionality.)
  25. Hello, Concrete5 and ImpressPages CMS are a bit similar in some aspects. Processwire is so customizable (html/css frameworks, backend organization/page input fields...). It is nice to developers and nice to users, as far as I know.
×
×
  • Create New...