Sticky notes page module?

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Sticky notes page module?

    Are there any modules that function in form interfaces to modify a very
    simple scratchpad type of html page. In short, like:

    ----- sample html page ----
    <html> <head and other stuff...> <body>

    <form><textarea>

    my bla bla not-to-forget notes.

    my own brainless comment..

    and someone's else brainless comment.

    </textarea></form>

    <here is a formbutton>[save update]</formbutton>
    (but maybe automated w/ JS onchange to prevent repetitive strain injury).

    -------- end of sample ------

    Maybe it sounds like I don't know what I'm talking about but I'm looking
    for simple modification function where the actual form is what is displayed
    on the html page, and thereby fills the dual function of display and
    editing. No fancy html output and so on.

    Should I be lookiung at any particular modules or would that be
    overcomplicating an otherwise simple set of functions?

    The purpose is just a kind of collaborative sticky notes.

    Nothing less or more.

    Thanks in advance for any pointers or ideas!

    Franzl Wisseworst Guest

  2. Similar Questions and Discussions

    1. What happens to sticky notes (Text) when converting to Tiff
      I am using the native Acrobat "SaveAs" function to convert PDF's to TIFF. Can you help me determine what I should do about preserving sticky notes...
    2. Sticky Rollover
      I have menu images that should have rollovers. When you click on an menu image, a layer becomes visible, and the menu image should change to an...
    3. Sticky text links
      I have a page http://www.crosshatchdesign.com/synergy/coverage.html The links load a page into the iframe below. Now the client wants the link...
    4. Sticky Rollovers
      Stephanie: Stick? And are you using the browser's back button or the back button on your page? -- Murray --- ICQ 71997575 Team Macromedia...
    5. Mouse goes sticky
      Have a sticky mouse...every couple of minutes it will just stick in one spot and after moving the mouse erratically on my desk it will come unstuck...
  3. #2

    Default Re: Sticky notes page module?

    Franzl Wisseworst wrote:
    > Are there any modules that function in form interfaces to modify a very
    > simple scratchpad type of html page. In short, like:
    >
    > ----- sample html page ----
    > <html> <head and other stuff...> <body>
    >
    > <form><textarea>
    >
    > my bla bla not-to-forget notes.
    >
    > my own brainless comment..
    >
    > and someone's else brainless comment.
    >
    > </textarea></form>
    >
    > <here is a formbutton>[save update]</formbutton>
    > (but maybe automated w/ JS onchange to prevent repetitive strain injury).
    >
    > -------- end of sample ------
    >
    > Maybe it sounds like I don't know what I'm talking about but I'm looking
    > for simple modification function where the actual form is what is displayed
    > on the html page, and thereby fills the dual function of display and
    > editing.
    CGI.pm generated form elements are sticky by default.

    perldoc CGI

    --
    Gunnar Hjalmarsson
    Email: [url]http://www.gunnar.cc/cgi-bin/contact.pl[/url]
    Gunnar Hjalmarsson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139